13 lines
304 B
Go
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
|
|
*/
|