Hacker News new | ask | show | jobs
by 37ef_ced3 1757 days ago
I think you're trying to say you like C but dislike C++'s complexity.

You will enjoy Go.

Go can be understood as an improved, modernized C that doesn't abandon C's simplicity.

2 comments

The "Go is like C" comparison never made any sense to me.

Go has a sophisticated runtime with transparent N:M threading and built-in concurrency primitives, Interfaces, garbage collection and a large standard library.

Go is only simple when compared to the other languages that sit in a similar space, like Java and C#.

C's runtime is UNIX, that is why we got POSIX.
> Go can be understood as an improved, modernized C that doesn't abandon C's simplicity.

This is false, because Go has a garbage collector by default. This isn't an "improvement" in anyway but for those who don't care about memory management and predictable and deterministic performances.