The Go Programming Language

November 17, 2009

Google Launches Its Own Programming Language – Go

Some smart Google engineers decided that it’s time to address the limitations of C and C++ by designing a new programming language: GO.

Official Go Lang site : www.golang.org

Go is a new programming language from Google that aims for performance that is nearly comparable to C, but with more expressive syntax and faster compilation. What it won’t do, however, is liberate the coding masses from bracist tyranny. Google’s Go is yet another take on C.

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]

Related Subjects :

  1. http://mashable.com/2009/11/10/go-google-language/
  2. http://googlesystem.blogspot.com/2009/11/go-googles-programming-language.html
  3. http://www.pcworld.com/businesscenter/article/181886/google_creates_programming_language_to_simplify_app_dev.html
  4. http://www.technewsworld.com/story/Go-Go-Google-Programming-Language-68622.html?wlc=1258458848
  5. http://www.webpronews.com/topnews/2009/11/11/new-google-programming-language-on-the-go
  6. http://arstechnica.com/open-source/news/2009/11/go-new-open-source-programming-language-from-google.ars
  7. http://blogs.computerworld.com/15078/googles_go_a_new_open_source_programming_language
  8. http://www.techcrunch.com/2009/11/10/google-go-language/
  9. http://www.informationweek.com/news/software/web_services/showArticle.jhtml?articleID=221601138

Powered by WordPress