PDA

View Full Version : Google releases its second programming language for this year


openAdmin
11-11-2009, 04:29 PM
Google has released an experimental open source programming language called Go.

According to a post by the Go Team on Google’s Open Source Blog (http://google-opensource.blogspot.com/2009/11/hey-ho-lets-go.html), Google believes that “programming should be fast, productive, and most importantly, fun.”

“Go combines the development speed of working in a dynamic language like Python with the performance and safety of a compiled language like C or C++. Typical builds feel instantaneous; even large binaries compile in just a few seconds. And the compiled code runs close to the speed of C. Go lets you move fast.”

“Go is a great language for systems programming with support for multi-processing, a fresh and lightweight take on object-oriented design, plus some cool features like true closures and reflection,”

The purpose of the project is to address several key deficiencies that the Google Go Team has identified such as :

“Computers are enormously quicker but software development is not faster.”

“Dependency management is a big part of software development today but the “header files” of languages in the C tradition are antithetical to clean dependency analysis—and fast compilation.

“There is a growing rebellion against cumbersome type systems like those of Java and C++, pushing people towards dynamically typed languages such as Python and JavaScript.”

“Some fundamental concepts such as garbage collection and parallel computation are not well supported by popular systems languages.”

“The emergence of multi-core computers has generated worry and confusion.”


The Go team claims that the newly released program could be the answer to tackling the above problems. According to the blog, a “Go program can be compiled in a few seconds on a single computer; it provides a model for software construction that makes dependency analysis easy and avoids much of the overhead of C-style include files and libraries. Go's type system has no hierarchy, so no time is spent defining the relationships between types. Also, although Go has static types the language attempts to make types feel lighter weight than in typical OO languages. Go is fully garbage-collected and provides fundamental support for concurrent execution and communication.”

GO is a second programming language released by Google this year. In July, it had announced the launch of Simple, a BASIC dialect (http://www.opensourcegroups.com/showthread.php?t=91)for developing Android applications.

Stop by at http://golang.org/ (http://golang.org/) for more info.