IO¶
Console input and output utilities.
Module: Std::Io
Import¶
Description¶
The Std::Io module provides console input and output functionality.
Output is handled by Print and PrintLine, which support primitive types, strings, and formatted output via the Display interface.
Input is handled by ReadLine, which reads a line of UTF-8 text from standard input.
Functions¶
| Function | Description |
|---|---|
Print |
Writes a value to standard output without appending a newline. |
PrintLine |
Writes a value to standard output and appends a newline. |
ReadLine |
Reads a line of UTF-8 text from standard input. |