print_raw

func print_raw(_ s: String) 'io -> Int

Performs 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)
}