Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
go version
mkdir hello-go && cd hello-go
main.go
package main import "fmt" func main() { fmt.Println("hello go!") }
go run main.go
hello-go
cd .. && rm -r hello-go