For download and setup, refer to the development kit.
Or check out the WebIDE to give baabnq a quick try.
use 'libs/string.baabnq'; static 'Hello, World!' _sHello; push _sHello; sub String::Print;
Save that under hello.baabnq, then compile and run with:
python compi.py -i hello.baabnq python vm.py -f build.s1
Compilation has to always take place in the directory where the compiler is located, so that it can correctly resolve and link dependencies.
To learn more about baabnq, you can follow the lesson down below, which will take you through the language step by step.
If, at any point, you want more concrete usage of baabnq,
you can have a look at the examples page.
Note that, the lesson assume you have intermediate knowledge about computer programming as well as computer architecture.