mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 05:33:04 +08:00
16 lines
219 B
Go
16 lines
219 B
Go
package main
|
|
import "fmt"
|
|
|
|
func main() {
|
|
f()
|
|
}
|
|
|
|
func f() {
|
|
for i := 0; i < 4; i++ {
|
|
g := func(i int) { fmt.Printf("%d ", i) }
|
|
g(i)
|
|
fmt.Printf(" - g is of type %T and has value %v\n", g, g)
|
|
}
|
|
|
|
}
|