Skip to content

Instantly share code, notes, and snippets.

@dineshrajpurohit
Created January 30, 2017 09:33
Show Gist options
  • Save dineshrajpurohit/63fb78bf806851d4fe84d3c47b66ed3a to your computer and use it in GitHub Desktop.
Save dineshrajpurohit/63fb78bf806851d4fe84d3c47b66ed3a to your computer and use it in GitHub Desktop.
Fibonacci using closure in Go - Excercise
package main
import "fmt"
// fibonacci is a function that returns
// a function that returns an int.
func fibonacci() func() int {
x := 0
y := 1
return func() int{
if x == 0 && y ==1{
x = y
return 0
}
fib := x
x = y
y += fib
//fmt.Println("X ", y)
return fib
}
}
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