2012-10-17 17:22:24 -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")
}