package main import ( "C" "fmt" "os" ) func main() {} //export Yaph func Yaph() { fmt.Println("Every day I get in the queue") fmt.Println("To get on the bus that takes me to you") } //export Acme func Acme() { go func() { fmt.Println("I guess i'm a closure") fmt.Println (os.Getpid()) }() }