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