Slight syntax adjustment
I just couldn't stand "dotimes x 200", and "for x do 200 times" just feels so much nicer. I also added a space after an opening parenthesis to ensure that my tokenizer gets to eat this particular type of unnecessary but permitted whitespace.
This commit is contained in:
parent
9a06f770c2
commit
53002f2b8a
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
dotimes x 200
|
for x do 200 times
|
||||||
if x < 100 then
|
if x < 100 then
|
||||||
pixeldraw(x + 10, x + 10)
|
pixeldraw (x + 10, x + 10)
|
||||||
else
|
else
|
||||||
pixeldraw(x + 10, 110)
|
pixeldraw(x + 10, 110)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue