go_playground/1-hello-world/hello.go

7 lines
73 B
Go
Raw Permalink Normal View History

2021-12-30 19:34:36 +00:00
package main
import "fmt"
func main() {
fmt.Printf("hello, world\n")
}