Nim interpreter

2021-11-01 Thread archnim
Thanks for the complete explanation. 🙏🏽🙂

Nim interpreter

2021-11-01 Thread Araq
Well the Nim compiler includes a virtual machine (compiler/vm.nim) that can interpret Nim code. A "superset" would probably imply to patch Nim's parser/vmgen/vm so that it interprets this "superset", whatever that implies. But if you think that compilation/interpretation has much to do with how

Nim interpreter

2021-11-01 Thread archnim
Hello world. Just to train myself and learn more, I would like to create a Superset of Nim Which will interprete scripts written in a nim-like language. To make it simple I imagine something like nodejs. It execute js scripts with aditionnal modules. Is it possible to archive that without coding