1
0
mirror of https://github.com/golang/go synced 2024-09-29 11:34:32 -06:00
go/doc/play/fib.go

20 lines
306 B
Go
Raw Normal View History

package main
import "fmt"
// 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.
fmt.Println(f(), f(), f(), f(), f())
}