What is the history of Golang syntax?

I am trying to use Golang and I found its syntax very interesting:

var a int = 10 b := 10 for { ... } func hello() world() int{ } 

These syntaxes really interest me, does anyone know their syntax history?

Or why they design it that way.

Thanks.

+4
source share

All Articles