| Example |
When you need to return input one character at a time, we recommend that you use the 'ME' Mnemonic. However, it is also possible to use 'BI' in combination with SIZ=1 to return input one character at a time. Then, each character is returned as entered. Standard characters are returned in the variable specified (e.g., CHAR$, below). Function and edit keys are returned in the system variable CTL. Your program will still be responsible for processing all the edit keys.
0010 INPUT (0,SIZ=1) 'BI', CHAR$, 'EI' ! This will echo the data
0010 OBTAIN (0,SIZ=1) 'BI', CHAR$, 'EI' ! This will not echo
|