func print_raw(_ s: String) 'io -> IntPerforms one write of s to standard output without a newline.
The returned count can be short or negative and no retry is attempted.
View Source
pub func print_raw(_ s: String) 'io -> Int {
write_string(fd: STDOUT_FD, s: s)
}