package main import "fmt" func testFn ()(int){ return 1 } func main() { f := testFn a := f() fmt.Println(a) }
最后更新于4年前