8 lines
82 B
Go
8 lines
82 B
Go
// main.go
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("Hello, Go!")
|
|
}
|