Add syntax example

This commit is contained in:
John Lorentzson 2025-05-16 10:38:29 +02:00
parent c6392088f8
commit 3878b57848

View file

@ -0,0 +1,7 @@
dotimes x 200
if x < 100 then
pixeldraw(x + 10, x + 10)
else
pixeldraw(x + 10, 110)
end
end