Let's have some fun with functions. Implement a fibonacci function that returns a function (a closure) that returns successive fibonacci numbers (0, 1, 1, 2, 3, 5, ...). 答案 package main import "fmt" // fibonacci is a function that returns // a function that returns an int. func...