Created
January 30, 2017 09:33
-
-
Save dineshrajpurohit/63fb78bf806851d4fe84d3c47b66ed3a to your computer and use it in GitHub Desktop.
Fibonacci using closure in Go - Excercise
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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