Skip to main content

Posts

Showing posts from December, 2009

Go: Google's New programming Language

Go is a Compiled, Garbage collected, System programming language developed by Google. It was officially launched on November'09. At present Linux based and Mac based compilers are available for Go language. Official site for for Go language is: http://golang.org . The following is the hello program for go language. package main import fmt "fmt" func main () { fmt. printf ( "Hello World \ n"); }