Saturday, December 12, 2009

"GO"- Programming Language

systems programming language
Go is open source and its syntax is similar to C, C++ and Python. It uses an expressive language with pointer but no pointer arithmetic. It is type safe and memory safe. However, one of its main goals is to offer the speed and safety of a static language but with the advantages offered by modern dynamic languages. Go also offers methods for any type, closures and run-time reflection. The syntax is pretty clean and it is garbage collected. It is intended to compete with C and C++ as a systems programming language.
 Example:
package main

import "fmt"

func main() {
  fmt.Printf("Hello,\n")
}
Learn more and install this in your system 

0 comments:

Post a Comment

Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Developed by Avinash | My Site