hello1.goΒΆ

// hello1.go

// To run at the command line:
//    $ go run hello1.go

package main

import "fmt"

func main() {
    fmt.Println("Hello, world!")
}