Skip to content

Instantly share code, notes, and snippets.

@ara-ta3
Created March 25, 2015 09:51
Show Gist options
  • Save ara-ta3/2210c9c49c71f8fd2b6a to your computer and use it in GitHub Desktop.
Save ara-ta3/2210c9c49c71f8fd2b6a to your computer and use it in GitHub Desktop.
フィボナッチ
def fibFrom(a:Long, b:Long): Stream[Long] = a #:: fibFrom(b, a+b)
println(fibFrom(0l, 1l).take(50).toList)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment