Skip to content

Instantly share code, notes, and snippets.

@asierba
Created October 15, 2015 08:10
Show Gist options
  • Save asierba/9ef9e67dad25e8b13fd6 to your computer and use it in GitHub Desktop.
Save asierba/9ef9e67dad25e8b13fd6 to your computer and use it in GitHub Desktop.
fibo 0 = 0
fibo 1 = 1
fibo x = fibo(x-1) + fibo(x-2)
allFibos 0 = [fibo 0]
allFibos x = allFibos(x-1) ++ [fibo x]
fibo :: Int -> Int
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment