11Nov/090
Google into programming – The Evolution of Go Programming
The tech giant has come up with an idea of a new programming language. They have named it "Go". Go is a combination of the ease of dynamic programming with the safety and efficiency of a static programming language.
The good news about this is…its Open Source.
A sample Go Program. Of Course to print "Hello World"
Package main
import "fmt"
func main() {
fmt.Printf("Hello world!")
}
Pros :
Ease of use
Safe and Efficient
Fast compilation and execution
Support for muticore and networked computing
Cons:
Oops…!!!.. Now an other language.
Get details at http://golang.org/