Input

From Xojo Documentation

Method

Retrieves a line from the terminal in console applications.

Syntax

result=Input

Part Type Description
result String The line retrieved from the terminal. Input does not return the Newline character as part of result.

Notes

Input is equivalent to a call to the ReadLine method of the StandardInputStream class.

Example

Var s As String
s = Input

See Also

ConsoleApplication, StandardInputStream, StandardOutputStream classes; Print, StdIn methods; TargetDesktop constant.