Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
11
Task/Loops-While/Chipmunk-Basic/loops-while.basic
Normal file
11
Task/Loops-While/Chipmunk-Basic/loops-while.basic
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
100 i = 1024
|
||||
110 do while i > 0
|
||||
120 print i
|
||||
130 i = int(i/2)
|
||||
140 loop
|
||||
150 print
|
||||
160 i = 1024
|
||||
170 while i > 0
|
||||
180 print i
|
||||
190 i = int(i/2)
|
||||
200 wend
|
||||
Loading…
Add table
Add a link
Reference in a new issue