Writes a slice of characters to stdout
.
Syntax
print fn (
string: []u8
)
Parameters
string
The slice of characters to be printed.
Example
#start {
std.print("Rawr!")
}
Output
Rawr!
See also
- print_char, to print a single character.