> For the complete documentation index, see [llms.txt](https://blog.yushunchen.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://blog.yushunchen.com/golang-notes/basics/hello-world.md).

# Hello World

## Hello world program

```bash
$ touch hello_world.go
```

```go
package main

import "fmt"

func main() {
	fmt.Println("Hello, 世界")
}
```

```bash
$ go run hello_world.go
```
