6 ms·
Hail Wikipedia for it is the source of all truth. http://en.wikipedia.org/wiki/System_programming_language http://en.wikipedia.org/wiki/System_programming_lang
by tomwilde 12y ago
Hail Wikipedia for it is the source of all truth.
http://en.wikipedia.org/wiki/System_programming_language http://en.wikipedia.org/wiki/System_programming_language
- agumonkey 12y agoC and Go both classified as high level system language, but I can't deny the fact that C allows for finer control over machine usage so it's hard to put Go in the same bag.
- tomwilde 12y agoYou are right yet Go is much closer to C than Erlang in syntax, type system and memory-representation. Go is so close to C in fact, that its compiler is a modified C compiler. Therefore I'd bundle it with C and D rather than Erlang.
- agumonkey 12y agoAgreed, I meant Erlang for its use. It's hard to be more different than Erlang in implementation :)
- voidlogic 12y agoI think of Go as "C++", but as brought to you by the guys who made C, with tasty sprinkles from CSP and Python.
- coldtea 12y agoIt's mostly Java from the people who made C, but didn't learn much from their C design mistakes.
- voidlogic 12y agoRidiculous. Go's lack of verbose classes and lack of inheritance, pass everything by value, the existence of pointers, first class concurrency primitives, compile to binary / no interpretation/JIT, lack of a VM, built in unit testing/benching, fast compile times, memory usage, easy C integration, etc etc all make it very different from Java. I've been writing Go full-time for over 2 years and used to write mostly Java/C#, so I should know. When I started with Go and ported many of my personal Java applications, they all were much more maintainable and straight forward in Go. Of course C had always been favorite language, and all I ever really wanted was a "modern" C, so I am probably biased.