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