Skip to content

Instantly share code, notes, and snippets.

@skatenerd
Last active August 29, 2015 14:15
Show Gist options
  • Save skatenerd/08d70c45499e1610206a to your computer and use it in GitHub Desktop.
Save skatenerd/08d70c45499e1610206a to your computer and use it in GitHub Desktop.
watbonacci
statefulSequence state transformstate plop = plop state : statefulSequence (transformstate state) transformstate plop
fib = statefulSequence [1, 1] (\[first, second] -> [second, first + second]) (!! 0)
main = print $ take 9 fib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment