Files
go_playground/5-go-by-example/1-hello-world.go
2021-12-31 15:36:34 +01:00

8 lines
72 B
Go

package main
import "fmt"
func main() {
fmt.Println("hello world")
}