Skip to content

Instantly share code, notes, and snippets.

@rndD
Created December 26, 2014 03:47
Show Gist options
  • Save rndD/bca58ca78368bc3b35a0 to your computer and use it in GitHub Desktop.
Save rndD/bca58ca78368bc3b35a0 to your computer and use it in GitHub Desktop.
Go lang Exercise: Exercise: Fibonacci closure
package main
import "fmt"
// fibonacci is a function that returns
// a function that returns an int.
func fibonacci() func() int {
x, y := 0, 1
return func() int {
new := x + y
x = y
y = new
return y
}
}
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