Hacker News new | past | comments | ask | show | jobs | submit
Interesting. Heard about Mojo a few years now, never really tried it. My Python brain cannot really write C++ or Rust but still need the performance.
You may have heard of it already, but Nim has existed in this space for some time.
Nim could do better with more than just 1 or 2 brilliant developers
Julia as well.
Take a look into numba, you add a decorator to your function and it turns it into compiled code.
It's JIT only, and it needs to be in a particular shape to be effectively compiled. It's mostly for numeric code, but there are many other cases where native code would be better.