src/gleeps/stdlib/io.gleam

/// Write something to the console associated with your account.
///
@external(erlang, "gleeps_server@gleeps_stdlib@io", "print")
pub fn print(string: String) -> Nil

/// Write something as an error to the console associated with your account.
///
@external(erlang, "gleeps_server@gleeps_stdlib@io", "print_error")
pub fn print_error(string: String) -> Nil

/// Write something to the console associated with your account.
/// Appends a newline.
///
@external(erlang, "gleeps_server@gleeps_stdlib@io", "println")
pub fn println(string: String) -> Nil

/// Write something as an error to the console associated with your account.
/// Appends a newline.
///
@external(erlang, "gleeps_server@gleeps_stdlib@io", "println_error")
pub fn println_error(string: String) -> Nil