Hacker News new | ask | show | jobs
by georgemcbay 4799 days ago
Go: Basically the same as C, but with better specification for type sizes, more rigid rules about automatic type conversion, no pointer arithmetic (you can do it using the unsafe package but it is highly discouraged by both the language design and idiomatic usage) and a compiler which can do type inference.

Also, when you get to manually allocated heap data (which this article doesn't cover) you don't have to worry about deallocations... usually.