|
|
|
|
|
by evincarofautumn
4636 days ago
|
|
Yeah, everyone’s got their eye on Rust as far as low-level expressive programming goes. Nimrod[1] also looks quite good: > Nimrod is a statically typed, imperative programming language that tries to give the programmer ultimate power without compromises on runtime efficiency. In my spare time, I’m working on a statically typed concatenative language called Kitten[2] with similar goals. [1]: http://nimrod-code.org/ [2]: http://github.com/evincarofautumn/kitten |
|
I believe you can turn off Nimrods GC as well, but you lose any guarantee of memory safety when you do. Not to mention -- aren't all pointers in Nimrod reference counted? That's going to take a fairly significant performance toll due to cache effects alone.