gobyexample/001-hello-world.go
2012-09-20 22:09:22 -07:00

13 lines
304 B
Go

package main // Here's an example Go program.
import "fmt"
func main() {
fmt.Println("Hello world") // It prints `Hello world`.
}
/* // Put this code in hello-world.go, then use
$ go run hello-world.go // `go run` to run it.
Hello world
*/