Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 191 Bytes

匿名函数.rst

File metadata and controls

10 lines (7 loc) · 191 Bytes

匿名函数

匿名函数没有函数名,只有函数体。

func(data int) {
    fmt.Println("hello", data)
}(100)