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:
John Lorentzson 2025-05-16 12:29:13 +02:00
parent 9a06f770c2
commit 53002f2b8a

View file

@ -1,4 +1,4 @@
dotimes x 200
for x do 200 times
if x < 100 then
pixeldraw (x + 10, x + 10)
else