A simple Interpreter in python, which can excuted codes line by line.
def func(x){
x = x+1;
b = 8;
return x+1;
}
a = func(100);
d = func(200);
c = a*d;
- Basic OP: +, -, *, /, Parentheses
- ASSIGN OP: =
- Control Flow
- function
- if
- Array
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A simple Interpreter in python, which can excuted codes line by line.
def func(x){
x = x+1;
b = 8;
return x+1;
}
a = func(100);
d = func(200);
c = a*d;