2014-05-11 14:31:04 -07:00

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