keyboard input
input
input
Returns the evaluation of a keyboard input.
input(expr)
First prints the evaluation of expr.
input("%s")
Returns the keyboard string input (without evaluation).
Examples:
x=input;
if(input == 1) $"ONE"; else $"OTHER";
prints ONE if input is for example 3-2
prints OTHER if input is for example 3
x=input(" value ";);
prints: value =