Skip to content

Instantly share code, notes, and snippets.

@tomgullo
Created January 25, 2013 17:29
Show Gist options
  • Save tomgullo/4636324 to your computer and use it in GitHub Desktop.
Save tomgullo/4636324 to your computer and use it in GitHub Desktop.
fibonacci test
def fibo(x) {
if (x < 2) {
return x
} else {
return fibo(x-1) + fibo(x-2)
}
}
println( (1..10).collect { fibo(it) }.join(",") )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment