Why would I use this over Nim?
From what I can tell: 1. They have a REPL and Jupyter integration 2. They're planning to do C and C++ interop. This is achievable in Nim but it is a pain, i.e. there is not easy way to import/include a C header in Nim, e.g. nothing as straight-forward as @cImport("cheader.h") in Zig or #include "cheader.h" in C++; one must go through c2nim or a third-party library (1) cannot be achieved without a custom linker or usi…
I prefer writing an explicit wrapper anyway. It allows me to rename symbols to a more idiomatic name.