Created
May 26, 2009 20:01
-
-
Save bavardage/118258 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let list = (cons 1n (cons 1n nil)), | |
nextfib = λ l. (cons (putNat (addN (head l) (head (tail l)))) l) | |
in | |
(putNat (head (iterate 25n nextfib list))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment