|
|
|
|
|
by jcranmer
3345 days ago
|
|
> OK, it's a systems language, but what does that even mean? You can write a system in any language right? When people refer to systems languages, they usually refer to languages that need to do lower-level interactions with hardware. For example, calling to your graphics card manually rather than using a high-level GUI toolkit. Or mmap'ing memory, or using internal JITs. This means that you need clear C and assembly interoperability and generally want to avoid garbage collection. |
|