home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 2
/
DATAFILE_PDCD2.iso
/
fractals
/
_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