Std.IO.Unsafe
Low-level I/O primitives that bypass the Stdio effect. Used internally by handler implementations.
Functions
print_stdout
fun print_stdout : String -> UnitWrites a string directly to stdout, bypassing the Stdio effect. Use this in custom Stdio handler implementations.
print_stderr
fun print_stderr : String -> UnitWrites a string directly to stderr, bypassing the Stdio effect. Use this in custom Stdio handler implementations.
read_stdin
fun read_stdin : Unit -> StringReads a line from stdin, stripping the trailing newline. Use this in custom Stdio handler implementations.