Skip to content

Instantly share code, notes, and snippets.

@Medeah
Created March 10, 2013 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Medeah/5127681 to your computer and use it in GitHub Desktop.
Save Medeah/5127681 to your computer and use it in GitHub Desktop.
A Tour of Go 43: Exercise: Fibonacci closure
package main
import "fmt"
// fibonacci is a function that returns
// a function that returns an int.
func fibonacci() func() int {
// we use seed values of F_−2 and F_−1
// that way the first fibonacci number returned will be F_0
a, b := -1, 1
return func() int {
next := a + b
a, b = b, next
return next
}
}
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