input()
input(prompt)
Returns a string from the console.
If a prompt is given, it is printed first.
Example
myschema Ra> answer:=input("Answer?: ")
Answer?: 42
myschema Ra> answer
42
Builtin
input()
input(prompt)
Returns a string from the console.
If a prompt is given, it is printed first.
myschema Ra> answer:=input("Answer?: ")
Answer?: 42
myschema Ra> answer
42