2012-10-09 21:02:12 -07:00

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")
}