For the complete documentation index, see llms.txt. This page is also available as Markdown.

Hello World

Hello world program

$ touch hello_world.go
package main

import "fmt"

func main() {
	fmt.Println("Hello, 世界")
}
$ go run hello_world.go

Last updated