Skip to content

Instantly share code, notes, and snippets.

@hadronized
Created October 14, 2017 21:47
Show Gist options
  • Save hadronized/6a8605ec58c3e487bc5540905de9c833 to your computer and use it in GitHub Desktop.
Save hadronized/6a8605ec58c3e487bc5540905de9c833 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func fibonacci() func() int {
a := 0
b := 1
return func() int {
c := a
a, b = b, a + b
return c
}
}
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