10 lines
174 B
Go
10 lines
174 B
Go
// Our first program will print the classic "hello world"
|
|
// message. Here's the full source code.
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("hello world")
|
|
}
|