/Interpreter

简易Interpreter,用Java编写

Primary LanguageCMIT LicenseMIT

相关教程

interpreter

shell

8cc C compiler

项目结构

structure

搭建过程

tutorial

运行实例

测试代码:

var a = 0;
var b = 1;

while (a < 10) {
    print a;
    var temp = a;
    a = b;
    b = temp + b;
}

使用命令:

setPath .\test
run test_1.c

结果