home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ARM Club 1
/
ARM_CLUB_CD.iso
/
contents
/
apps
/
fractal
/
progs
/
fractrace
/
FTS-Files
/
Fibonacci
< 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
|
200 b
|
15 lines
\ Fibonacci
\ Calculates the first 20 numbers
\ in the Fibonacci sequence
var old,veryold,new,count
veryold=0
old=1
for count=1 to 20
new=veryold+old
veryold=old
old=new
show new
endfor