1-- .Play -- 2package main 3 4func Foo(x int) { 5} 6 7func main() { 8 fmt.Println("Hello, world!") 9} 10-- .Output -- 11Hello, world!
View as plain text