package main
import "fmt"
func counter() func() int {
n := 0
return func() int {
n += 1
return n
}
}
func main() {
inc := counter()
fmt.Println(inc())
fmt.Println(inc())
fmt.Println(inc())
}
To embed this project on your website, copy the following code and paste it into your website's HTML: