Files
headfirstgo/chapter1/hello.go
Archie Fox 2e7b8722ca Init commit
2025-01-30 12:04:39 +03:00

8 lines
71 B
Go

package main
import "fmt"
func main() {
fmt.Println("Hello, Go!")
}