Tagged in

Golang

ducktyp’d
ducktyp’d
Technology Rants
More information
Followers
5
Elsewhere
More, on Medium

Go to Go — Concurrency Part#1

This post is originally published here on March 15, 2015

Go came to existance to solve problems being faced by today’s software, one of them is concurrency (ability to execute stuff in parellel while providing control and communication among them). To…


Go to Go — Packages

This post is originally published here on March16, 2015

Go is modern language, so it has to take care of current software development practices; code reuse or DRY (Don’t Repeat Yourself) being one of them. In go code can be packed into modules and shipped. Lets look…