Submodules
Constants
Procedures
eprintln
Uses core::as_str to convert thing to its string representation and then writes it to the standard error output, followed by a new line.
Arguments
thing - any
Returns
unit
file_sep
Returns the file separator (\ for Windows, / for UNIX-likes) for the system the program is running on.
Arguments
Returns
str
inputln
Reads a line of text as input from stdin (blocking the calling thread) returning the read line as a string.
Arguments
Returns
str
path_sep
Returns the file path separator (; for Windows, : for UNIX-likes) for the system the program is running on.
Arguments
Returns
str
println
Uses core::as_str to convert thing to its string representation and then writes it to the standard output, followed by a new line.
Arguments
thing - any
Returns
unit