Comment on Poll: How many programming languages do you command fluently?parentComments−jrockway12yGo does indeed add some nice checks over C. For example, given: type foo int var ( A foo = iota B C D ) func bar(x foo) ... It's an error to write: bar(2) That's enough typing to prevent many types of annoying mistakes.
Comments
Go does indeed add some nice checks over C. For example, given:
It's an error to write: That's enough typing to prevent many types of annoying mistakes.