|
|
|
|
|
by zigzag312
233 days ago
|
|
If you consider Go as a low level language, you might want to try C# which can be as low level as Go while having a lot of high level features. NativeAOT compiler allows you to statically link native libraries or create native shared libraries (.dll/.dylib/.so) that can be consumed from other languages. It's kind of 2-in-1 language, but the ecosystem is primarily focused on the high level part, so you can only depend on small portion of it. If you are OK with less popular languages you can check any of these: Nim, Hylo (formely Val), Vale, D, or Zig. I haven't tried any of these yet, but they all have piqued my interest. Nim is probably the easiest one. |
|
Unsafe C# is the most unsafe language I've ever worked with. Really terrifying stuff.