more examples

This commit is contained in:
2021-09-07 20:21:03 +00:00
parent dbc1292105
commit bf872f0919
5 changed files with 102 additions and 0 deletions

22
gobyexample/closures.go Normal file
View File

@ -0,0 +1,22 @@
package main
import "fmt"
func intSeq() func() int {
i := 0
return func() int {
i++
return i
}
}
func main() {
nextInt := intSeq()
fmt.Println(nextInt())
fmt.Println(nextInt())
fmt.Println(nextInt())
newInts := intSeq()
fmt.Println(newInts())
}