Skip to content
Pannous edited this page Dec 28, 2022 · 2 revisions

range

print 1…5 
1 2 3 4 5

1…5 do print it
1 2 3 4 5

for i in 1…5
    print i
1 2 3 4 5

see iteration and for loops:

for 1..10 : print it // excluding 10
for 1...10 : print it // including 10
for 1 to 10 : print it // including 10
for 1 upto 10 : print it // excluding 10

Home

Philosophy

data & code blocks

features

inventions

evaluation

keywords

iteration

tasks

examples

todo : bad ideas and open questions

⚠️ specification and progress are out of sync

Clone this wiki locally