10 lines
175 B
Go
10 lines
175 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")
|
|
}
|