A simple programing language based on basic
- Still working on it
- Now is a simpile interpreter which support basic arithmetic operations
python3 shell.py
- Support basic operations
- Support variable definition
- Support comparison operations
- Support if statement
- Support while and for(check more detail in grammar.txt )
#for loop:
var res=0
for i=0 to 6 then var res=res+i
#while loop:
var res=0
while res<10000 then var res=res+1
- working on function