- 直接运行.aba或.abc文件
C:\Users\user> Abacus.exe "hello world.aba"
C:\Users\user> Abacus.exe "hello world.abc"
- 将任意拓展名文件以算盘源文件格式运行
C:\Users\user> Abacus.exe -r "hello world.txt"
- 将任意拓展名文件以算盘字节码文件格式运行
C:\Users\user> Abacus.exe -rc "hello world.hex"
- 将任意拓展名文件以算盘源文件格式编译成同名同目录的算盘字节码文件
C:\Users\user> Abacus.exe -c "hello world.aba"
- 将任意拓展名文件以算盘源文件格式编译算盘字节码, 并存储到指定文件中
C:\Users\user> Abacus.exe -c "hello world.aba" “hello world.abc”