In-reply-to » @kat I don’t like Golang much either, but I am not a programmer. This little site, Go by example might explain a thing or two.

Ultimately, Go sits in the sweet spot on the complexity vs performance chart:

  • Minimal syntax & concepts β†’ low learning curve
  • Compiled speed β†’ high throughput
  • Built-in CSP concurrency β†’ scalable by default

See Rob Pyke’s presentation on Expressiveness of Go

​ Read More