Mwnci input() Function

Syntax

input([prompt])

Description

The input() function simply returns the result of keyboard entry. An optional prompt can be given as an argument to the function

Example

a=input("Type here > ")
println("You typed ", a)

Type here > wibble
You typed wibble