basic/doc/statements/input.rs
1/*!
2# `INPUT [,]["<prompt string>";]<variable>[,<variable>...]`
3
4## Purpose
5Suspends execution and awaits a response from the terminal.
6
7## Remarks
864K BASIC was designed to run programs from a time when lowercase was unexpected.
9INPUT will capitalize ASCII lowercase by default. You can disable this feature
10with a comma immediately after the INPUT.
11
12## Example
13```text
1410 INPUT ,A$
1520 INPUT "WHAT IS YOUR NAME AND AGE"; NAME$, AGE%
16```
17
18*/