Skip to content
Cerus edited this page Aug 10, 2022 · 1 revision

/stdlib/io/std.edina

Routine Visibility
std_out 🌐 Global
std_err 🌐 Global
std_in 🌐 Global
print 🌐 Global
println 🌐 Global
print_out 🌐 Global
println_out 🌐 Global
print_err 🌐 Global
println_err 🌐 Global

🌐 std_out

Puts the file descriptor for Std Out on the stack


🌐 std_err

Puts the file descriptor for Std Err on the stack


🌐 std_in

Puts the file descriptor for Std In on the stack


🌐 print

Writes a string to the target descriptor

Takes Gives
Target descriptor (int)
String (str)

🌐 println

Writes a string and a linefeed to the target descriptor

Takes Gives
Target descriptor (int)
String (str)

🌐 print_out

Writes a string to stdout

Takes Gives
String (str)

🌐 println_out

Writes a string and a linefeed to stdout

Takes Gives
String (str)

🌐 print_err

Writes a string to stderr

Takes Gives
String (str)

🌐 println_err

Writes a string and a linefeed to stderr

Takes Gives
String (str)