Difference between revisions of "MC-Basic:PROMPT"

From SoftMC-Wiki
Jump to: navigation, search
m (Miborich moved page Axystems:MC-Basic:PROMPT to MC-Basic:PROMPT: Global renaming of Axystems: namespace into (Main):)
Line 42: Line 42:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:SENDDATA|SENDDATA]]
+
* [[MC-Basic:SENDDATA|SENDDATA]]
  
  
 
}}
 
}}

Revision as of 08:40, 22 May 2014

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