Let’s Go

GoLanger
1 min readOct 30, 2016

--

I believe all of you, at least a few might be aware of GoLang.! Anyways I’m briefing about the programming language Go here.

What’s Go ?

Go is often referred as GoLang which is a free and open source programming language created at Google. It is basically a compiled, statically typed language like C with the capability of concurrent programming.

Although its originally developed by Google for the kinds of problems Google works on, large distributed network applications — Go is now a general-purpose programming language useful in a wide variety of software domains. Many companies have started using because of it’s simplicity, ease of use, performance, low barrier of entry and powerful tooling.

Image courtesy https://github.com/golang/go

Syntax

package mainimport “fmt”func main() {
fmt.Println(“Hello From Go”)
}

Setting up your machine to support Go

--

--