Skip to content

Instantly share code, notes, and snippets.

@wuerges
Last active April 20, 2016 20:04
Show Gist options
  • Save wuerges/f8ea74cc71b0f89fcad88527f53dbde5 to your computer and use it in GitHub Desktop.
Save wuerges/f8ea74cc71b0f89fcad88527f53dbde5 to your computer and use it in GitHub Desktop.
-- Função fibonacci memoizada usando:
-- * recursão,
-- * funções de alta ordem
-- * avaliação preguiçosa
-- * listas infinitas
fibs = 1:1:(zipWith (+) fibs (tail fibs))
-- imprimindo apenas os primeiros 10 valores da sequencia
main = print $ take 10 fibs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment