BleuLlama / TinyBasicPlus

A C implementation of Tiny Basic, with a focus on support for Arduino
403 stars 117 forks source link

Fixed Input command to accept and evaluate an expression using getln() #5

Closed Megamemnon closed 7 years ago

Megamemnon commented 10 years ago

added global variable static unsigned char *tmptxtpos; added local variable int value (in input: closure); added inputagain: identifier and repeatable code to populate identified variable with value entered via getln();this also supports the use of variables in expressions entered in response to the Input command which is kinda cool.

BleuLlama commented 7 years ago

Thanks!