
Starting the work:
- Install dependencies
poetry install- Choose file with
.rdextension and compile it to the bytecode(with.raidedextension)
python raider src/raider.py compile --no-debug-mode scripts/script_operations- Then in the folder where chosen
.rdfile located execute bytecode(interpret and execute)
python raider src/raider.py run --no-debug-mode scripts/script_operations- Additionally it is possible to compile & run together
python raider src/raider.py execute --no-debug-mode scripts/script_operationsscripts/ - consists of raider language scripts
scripts/bytecode - bytecode of the scripts with the same name and .rd extension
src/compiler - compiler code
src/vm - vm code