Labels

Categories: Food | Travel | Beer | Wine | Boston | Humor | TV | Tech | Pop Culture | Politics | Golf | Video | Photo | Auto
Sponsored: Samsung | Cadillac | Volt | GMC | AT&T | Gear List: Cameras, Lights, Microphones, etc.
More: SteveGarfield.com | Steve Garfield's Video Blog (archived 6/19/2013)
“As an Amazon Associate I earn from qualifying purchases.” | Mastodon

Thursday, March 29, 2012

The Go Programming Language by Google

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