Diving Into Golang Channels

Robert Weber
ITNEXT
Published in
8 min readApr 21, 2019

--

A straightforward translation of a C++ or Java program into Go is unlikely to produce a satisfactory result — Java programs are written in Java, not Go. On the other hand, thinking about the problem from a Go perspective could produce a successful but quite different program. — Effective Go

One of the central goals of golang’s design was the development of a language that would easily leverage multi-threaded…

--

--