print_raw

print_raw fn(items: ..Any)

Print the items.

Usage

#start {
    std.print_raw("Rawr!!\n")
    
    word := "for" 
    std.print("Need ", word, " spaces\n")
}

Output

Rawr!!
Need for spaces

See also

print who print the items with implicit spaces between each item and a new line.