1
0
mirror of https://github.com/golang/go synced 2024-10-03 09:31:23 -06:00
go/doc/play/fib.go

18 lines
288 B
Go
Raw Normal View History

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())
}