Pages

Friday, March 30, 2012

Lets GO!

GO is an open source programming language created by Google that started in 2007 by 
Robert Griesemer, Rob Pike, and Ken Thompson.

Last March 28, 2012, Google announced the release of the very first version of the language,
and it was named GO Version 1 or GO 1. The language supports many flat forms like Linux,
FreeBSD, Mac OS X and Windows (Yes, Windows). Go Lang is also supported by Google App Engine SDK which was also released together with GO 1.

The GO Syntax is more likely in C language. Curly Braces {} in every block of codes.

Here is a "Hello World" sample

package main

import "fmt"

func main() {
        fmt.Println("Hello, World")
}


Everything about GO is in golang.org, visit this now and start studying the new language.

No comments:

Post a Comment