0 Members and 1 Guest are viewing this topic.
I am a proud cynic.
@ralphdspam, it's kind of a basic interpreter, but it's really neither. It'll be able to open/save as 8xp files, but I am building a sort of conversion engine that will allow users to turn .8xp programs into fully-functional .exe programs to run on the computer.
Disp "string constant:"Disp "spam"Disp "string concatenation:"Disp "eggs" + " foo"Disp "expression with parens"Disp ((1 + 2) + 3) * 4Disp "unterminated brackets"Disp ((1 + 2Disp "logic operators"Disp 1 < 3 and 4 > 3Disp "variable set, implied multiplication"2->A1->BDisp ABDisp "-> should close all brackets (this should Disp 6)"3+(1+2->CDisp CDisp "->D->E"1->D->EDisp D + E
Disp 1, 2, 3Output(1, 2, 3)
I think he's trying to build an interpreter that will actually run a TI-Basic program from the computer.