|
|
|
|
|
ConsoleRead (Function) In french: ConsoleLit Reads a string in the standard input stream "stdin". Note: When the function is called, the console waits for the user to type the text. When the user enters the '\n' character (using the Enter key), the string entered is returned by the function. ConsoleWrite("Veuillez renseigner votre prénom : ")
let sPrénom = ConsoleRead()
Syntax <Result>: Character string Characters entered on the standard input stream. Remarks Warning: under Windows, the generated executable must be in console mode to allow the user to enter text.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|