Hacker News new | ask | show | jobs
by spullara 1802 days ago
Go Lang is a lot closer to Java 1.2 than it is to C.
2 comments

It is not object oriented. Interfaces and struct methods with composition and not inheritance is much more C than Java (no not overriding methods) kind of the C or compiled version of duck typing. Reading thru OpenSSL code is not that different from reading thru Go code. Typed but not a artificial hierarchy of types.
I strongly disagree.

Go is an improved C that includes garbage collection (as is needed to make bug-free concurrent programming easier).