Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
11
Task/Repeat/Chipmunk-Basic/repeat.basic
Normal file
11
Task/Repeat/Chipmunk-Basic/repeat.basic
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
10 sub proc()
|
||||
20 print " Inside loop"
|
||||
30 end sub
|
||||
40 sub repeat(func$,times)
|
||||
50 for i = 1 to times
|
||||
60 proc()
|
||||
70 next i
|
||||
80 end sub
|
||||
90 repeat("proc",5)
|
||||
100 print "Loop Ended"
|
||||
110 end
|
||||
Loading…
Add table
Add a link
Reference in a new issue