You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
261 B
16 lines
261 B
10 for i=0 to 10
|
|
20 print i
|
|
30 if i=5 then exit for
|
|
40 next
|
|
50 for i=0 to 0
|
|
60 print i
|
|
70 next I
|
|
80 for i=1 to 0 step -1
|
|
90 print i
|
|
100 next
|
|
110 for i=1 to 0
|
|
120 print i
|
|
130 next
|
|
140 for i$="" to "aaaaaaaaaa" step "a"
|
|
150 print i$
|
|
160 next
|
|
|