func print<T: Showable>(_ value: T) -> ()Displays value on standard output followed by a newline.
Rendering uses Showable; both writes intentionally ignore short counts and host errors, making this a convenience API rather than reliable stream output.
View Source
pub func print<T: Showable>(_ value: T) -> () {
_print_line(s: value.show())
}