Skip to content

Instantly share code, notes, and snippets.

@freeformz
Created July 13, 2012 23:06
Show Gist options
  • Save freeformz/3108146 to your computer and use it in GitHub Desktop.
Save freeformz/3108146 to your computer and use it in GitHub Desktop.
My GoTour Exercise #47 (http://tour.golang.org/#47) solution
package main
import "fmt"
// fibonacci is a function that returns
// a function that returns an int.
func fibonacci() func() int {
curr := 0
succ := 1
return func() int {
curr, succ = succ, curr + succ
return curr
}
}
func main() {
f := fibonacci()
for i := 0; i < 10; i++ {
fmt.Println(f())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment