Go is an open source programming environment that makes it easy to build simple, reliable, and efficient software.
Website:
The Go Programming Language by Google
My first program:
// Author: Steve Garfield
// Date: March 29, 2012
// Hello World. My first Go Program.
package main
import "fmt"
func main() {
fmt.Println("Hello, World. What's Up?")
}