hello_world.go 92 B

123456789
  1. // hello_world.go
  2. package main
  3. import "fmt"
  4. func main() {
  5. fmt.Println("hello, world")
  6. }