User talk:Hakkaplle

From Rosetta Code
Revision as of 19:25, 28 February 2012 by MikeMol (talk | contribs) (edits)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Had to yank your edits from Fibonacci sequence, as you obliterated most of the page, and the 'undo' was taking too long. (Server kept killing it.) But here's the last version of your code:

<lang ti83b>

25dim(∟FIBO // saving to a list to get more rows of numbers. however this is not necessary for the program
1→X:0→Y
For(I,1,25
X+Y→F
F→∟FIBO(I // using "Disp F" works aswell
Y→X
F→Y
End
∟FIBO



                //BY CO       feel free to improve!

</lang> --Michael Mol 19:25, 28 February 2012 (UTC)