-- 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