~~~go func hello(i int) { fmt.Println(i) } func main() { i := 5 defer hello(i) i = i + 10 } ~~~ 刷题: https://oyto.github.io/categories/