Skip to content

Instantly share code, notes, and snippets.

@antonijn
Last active August 29, 2015 14:03
Show Gist options
  • Save antonijn/48caf027e3be98624b6d to your computer and use it in GitHub Desktop.
Save antonijn/48caf027e3be98624b6d to your computer and use it in GitHub Desktop.
fibs :: [Integer]
fibs = fibseed 0 1
where fibseed a b = a : fibseed b (a + b)
fib :: Int -> Integer
fib n = fibs !! n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment