Its my blog
GO Programming Language by Google
Some folks at google plex decided its time to develop a new programming language which would be better than C and C++ . So they came out with
The Go Programming Language
Go was born out of frustration with existing languages and environments for systems programming. Programming had become too difficult and the choice of languages was partly to blame. One had to choose either efficient compilation, efficient execution, or ease of programming; all three were not available in the same mainstream language. Programmers who could were choosing ease over safety and efficiency by moving to dynamically typed languages such as Python and JavaScript rather than C++ or, to a lesser extent, Java.
Go is an attempt to combine the ease of programming of an interpreted, dynamically typed language with the efficiency and safety of a statically typed, compiled language. It also aims to be modern, with support for networked and multicore computing. Finally, it is intended to be fast: it should take at most a few seconds to build a large executable on a single computer. To meet these goals required addressing a number of linguistic issues: an expressive but lightweight type system; concurrency and garbage collection; rigid dependency specification; and so on. These cannot be addressed well by libraries or tools; a new language was called for. [Language design FAQ]
Okay according to people over at the golang.org here is a sample hello world application

How to say hello world in Go language
You can get all the details reagarding how to install and code in Go Language at their official website – golang.org
Here is a video about the same
Well how far this language will go is a something we’ll see in the coming years. Have your say in the comments !!
| Print article | This entry was posted by Anuj Tenani on November 11, 2009 at 4:22 pm, and is filed under Programming, google. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site. |


