Skip to content

Instantly share code, notes, and snippets.

@pedromg
Created June 21, 2017 22:44
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 pedromg/04eab7b77614e05d21fb4337f1869352 to your computer and use it in GitHub Desktop.
Save pedromg/04eab7b77614e05d21fb4337f1869352 to your computer and use it in GitHub Desktop.
Fibonacci closure in Golang
package main
import "fmt"
// fibonacci is a function that returns
// a function that returns an int.
func fibonacci() func() int {
n_1, n := -1, 1
return func() int {
tmp := n
n = n_1 + n
n_1 = tmp
return n
}
}
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