Simple drawing program v1 W.I.P

-- Simple drawing program
--Project: Drawing v.1
-- by Kire
-- 749, 768

--Setup
function setup()
    print("pls draw slowly, using the parameters")
    print(WIDTH,HEIGHT)
    parameter.number("x",0,749,0)
    parameter.number("y",0,768,0)
    
end
--Loop
function draw()
    strokeWidth(30)
-- Change 'rect' to 'ellipse' if you want
    rect(x,y,30,30)
end

Touch will probaly be avaible soon

@Kire, when you post code, put ~~~ on the line before, and the line after, your code, as I’ve done above. Then it looks nice.

There have been a lot of drawing programs posted on the forum, search and you will see. They might give you ideas, some of them are very nice.

@Ignatz, Thank you for advice :3 im pretty new to the forum and just started coding so…still learning from Lua manual

@Kire - welcome! We all started that way.

Just ask if you get stuck (and post code so we can see what the problem is).