MC-Basic:PROMPT

From SoftMC-Wiki
Revision as of 09:34, 10 April 2017 by Chi (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Language: English  • 中文(简体)‎

This statement takes information you type and stores it in a list of variables. The values of the variables are entered via the SENDDATA command.

<str_value> - String to be printed (option)

<, var_name1> - variable names to be input

<, var_nameN> - variable names to be input

Variable types must match. Otherwise, an error message is returned and you will again be prompted to enter the correct variable types. If multiple variables are required, the respective values entered must be separated by commas. If multiple variables are required and there is an error in one of the inputs, the entire series must be re-entered.

Syntax

PROMPT {<str_value>}   <, var_name1> { …<, var_nameN>}

Availability

All versions

Scope

Task

Limitations

The values you enter must be a single-literal values, not expressions.

Examples

Prompt "enter a value",i1

See Also