Skip to content

Instantly share code, notes, and snippets.

@sugilog
Created January 4, 2015 12:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sugilog/e3b5ead9d7642338d3b5 to your computer and use it in GitHub Desktop.
Save sugilog/e3b5ead9d7642338d3b5 to your computer and use it in GitHub Desktop.
closureの演習
package main
import "fmt"
// fibonacci is a function that returns
// a function that returns an int.
func fibonacci() func() int {
i := 0
a0 := 0
a1 := 0
return func() int {
switch i {
case 0:
a1 = 0
case 1:
a1 = 1
default:
j := a1
a1 = a0 + a1
a0 = j
}
i++
return a1
}
}
func main() {
f := fibonacci()
for i := 0; i < 10; i++ {
fmt.Println(i, f())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment