12 lines
181 B
Go
12 lines
181 B
Go
// src/hello.go
|
|
// A simple Go program that prints "Hello, World!" to the console.
|
|
// go run src/hello.go
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("Hello, World!")
|
|
}
|
|
|