Skip to content

Instantly share code, notes, and snippets.

@weppos
Last active June 29, 2024 22:04
Show Gist options
  • Save weppos/7843653 to your computer and use it in GitHub Desktop.
Save weppos/7843653 to your computer and use it in GitHub Desktop.
A Tour of Go Exercise: Fibonacci closure
package main
import "fmt"
// fibonacci is a function that returns
// a function that returns an int.
func fibonacci() func() int {
f2, f1 := 0, 1
return func() int {
f := f2
f2, f1 = f1, f+f1
return f
}
}
func main() {
f := fibonacci()
for i := 0; i < 10; i++ {
fmt.Println(f())
}
}
@pavel-kalmykov
Copy link

P.S.: The solution with the defer statement is pure gold 🥇

Could you please elaborate on what's so special about using defer here? I do not see any improvement over not using it.

@pabloxio
Copy link

Could you please elaborate on what's so special about using defer here? I do not see any improvement over not using it.

two things:

  • When I was solving the exercise, using defer never crossed my mind, so when I saw that solution it was an ahá moment 🤯
  • I saw it as a readability improvement for sure, the combination between Function closures (link) and the defer statement, imho it's way simpler to read:
func fibonacci() func() int {
	current, next := 0, 1

	return func() int {
		defer func() {
			current, next = next, current+next
		}()

		return current
	}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment