Fromgodd's Virtual Machine (stack)
To use the FVM, simply run the following command:
fvm <filename>
Where <filename>
is the name of the file containing your FVM bytecode.
To compile the FVM, you can use Cargo. Run the following command:
cargo build --release
This code will just sum up 10 and 12 from stack and print result
PUSH 10
PUSH 12
ADD
PRINT