- run instructions from .dd file
python3 mylang.py ./examples/avg.dd
- run instructions from command line argument
python3 mylang.py '1 2 3 ADD PRINT'
- run REPL mode
python3 mylang.py -r
in REPL mode there are some special commands:
- memory dump
>>> mem
- clear memory
>>> cls
- exit repl
>>> exit