NSEL crisis which came into light Thursday morning is seen adding to
pain in equity markets, which are going through a bear phase, Dipan
Mehta, Member of BSE and NSE said.
http://bit.ly/19A378k
http://bit.ly/19A378k
The open-source Smartphone Operating System
Go is an open source programming environment that makes it easy to build simple, reliable, and efficient software.
The Go programming language is an open source project to make programmers more productive.Go is outgoing, crisp, clean, and competent. Its concurrency mechanism make it easy to write down programs that obtain the most out of multicore and networked machines, at the same time as its novel type system enable flexible and modular program structure. Go compiles fast to machine code nevertheless has the ease of garbage collection and the control of run-time expression. It's a fast, statically typed, compiled language that feels similar to a dynamically typed, interpreted language.Go is an open source project with a BSD-style license. There are two official Go compiler toolchains: the gc Go compiler and the gccgo compiler that is part of the GNU C Compiler (GCC).The gc compiler is the more established and well-tested of the two.The gc compiler supports the subsequent operating systems and architectures. Please make sure your system meets these necessities before proceeding. If your OS or architecture is not on the list, it's possible that gccgo might support your setup; see Setting up and using gccgo for details.
Operating system | Architectures | Notes |
---|---|---|
FreeBSD 7 or later | amd64, 386 | Debian GNU/kFreeBSD not supported |
Linux 2.6.23 or later with glibc | amd64, 386, arm | CentOS/RHEL 5.x not supported; no binary distribution for ARM yet |
Mac OS X 10.6/10.7 | amd64, 386 | use the gcc† that comes with Xcode |
Windows 2000 or later | amd64, 386 | use mingw gcc†; cygwin or msys is not needed |
build | compile packages and dependencies |
---|---|
clean | remove object files |
doc | run godoc on package sources |
env | print Go environment information |
fix | run go tool fix on packages |
fmt | run gofmt on package sources |
get | download and install packages and dependencies |
install | compile and install packages and dependencies |
list | list packages |
run | compile and run Go program |
test | test packages |
tool | run specified go tool |
version | print Go version |
vet | run go tool vet on packages |
package main import "fmt" func main() { fmt.Println("Hello, World!") }