BleuLlama / TinyBasicPlus

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

The input command has no documentation and I can not get it to work #30

Closed pcmr106 closed 6 years ago

pcmr106 commented 6 years ago

I have been working on this for about an hour now, I would like to know how to use the input command

BleuLlama commented 6 years ago

As mentioned in the docs the INPUT command is currently nonfunctional

Sent from your iPhone.

On Nov 30, 2017, at 6:05 PM, pcmr106 notifications@github.com wrote:

I have been working on this for about an hour now, I would like to know how to use the input command

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

BleuLlama commented 6 years ago

Hi. Not sure if you're still interested in this, but INPUT is implemented now. (it might have been in the past as well.) But as you mention; no documentation.

I have documented it on the main page. In short: 10 INPUT A - will take input from the user, and store it in variable A. It will accept numbers/expressions. So you can use integers "43", "88" or variable names "a" etc But not textual strings.

pcmr106 commented 5 years ago

Thanks, I'll have to try it out now