mirror of
https://github.com/leafo/moonscript.git
synced 2025-01-09 00:04:22 +00:00
18 lines
174 B
Plaintext
18 lines
174 B
Plaintext
|
|
for x=1,10
|
|
print "yeah"
|
|
|
|
for x=1,#something
|
|
print "yeah"
|
|
|
|
for y=100,60,-3
|
|
print "count down", y
|
|
|
|
for a=1,10 do print "okay"
|
|
|
|
for a=1,10
|
|
for b = 2,43
|
|
print a,b
|
|
|
|
|