home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ARM Club 1
/
ARM_CLUB_CD.iso
/
contents
/
apps
/
fractal
/
progs
/
fractrace
/
FTS-Files
/
Recursion
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-07-21
|
229 b
|
19 lines
\ Recursion
\ Demonstrates the use of (recursive) subroutines
\ in FracTrace
var count,max
count=1
max=20
call recurcount
show count
stop
.recurcount
count=count+1
if count<max
call recurcount
endif
return