1
0
mirror of https://github.com/golang/go synced 2024-09-25 11:20:13 -06:00
go/doc/play/fib.go
2012-03-15 17:44:47 +11:00

18 lines
288 B
Go

package main
// fib returns a function that returns
// successive Fibonacci numbers.
func fib() func() int {
a, b := 0, 1
return func() int {
a, b = b, a+b
return a
}
}
func main() {
f := fib()
// Function calls are evaluated left-to-right.
println(f(), f(), f(), f(), f())
}