0 Members and 4 Guests are viewing this topic.
Well I think one of the big reasons TI-BASIC is so slow is because it parses as it runs. So if there was a good way to parse it first then execute or something it would not be as big of an issue.
Quote from: meishe91 on September 02, 2010, 06:17:17 pmWell I think one of the big reasons TI-BASIC is so slow is because it parses as it runs. So if there was a good way to parse it first then execute or something it would not be as big of an issue.It would still be almost as slow, because of all the floating-point arithmetic. It would also be significantly bigger.
@meisheHmm....isn't that pretty much what axe does? (well kinda) I know, it converts it to asm, not preparsing per se, but it's a similar idea.BTW, the concept of parsing before running a program is called compiling Floating point arithmetic.....is there any way around it in TI-Basic?
LOCATE 5,1 'places the cursor at that spotprint "blablabla"