leer( )

The leer( ) function scans the numeric and alphanumeric keys entered by the user, until they press the Enter key .

It is recommended to assign this command to a variable, since any data entered by the user can be manipulated more easily.

leer()
escribir("What's your name?")
x = leer()
escribir("Hi "..x)     //Returns "Hi (User name)"