Last active
April 20, 2016 20:04
-
-
Save wuerges/f8ea74cc71b0f89fcad88527f53dbde5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
-- 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