Files
moxa/_test/assign9.go

16 lines
139 B
Go

package main
type foo func(b int)
func boo(b int) { println("boo", b) }
func main() {
var f foo
f = boo
f(4)
}
// Output:
// boo 4