go-by-example/hello-world/hello-world.go
2023-12-18 03:40:05 -05:00

5 lines
69 B
Go

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