Created
March 10, 2013 08:48
-
-
Save Medeah/5127681 to your computer and use it in GitHub Desktop.
A Tour of Go
43: Exercise: Fibonacci closure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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