print

print fn(items: ..Any)

Print the items with a space between each of them and a new line.

Parameters

items: ..Any

Zero or more items to be printed.

Usage:

#start {
    std.print("Rawr!!")
    
    word := "for" 
    std.print("No", "need", word, "spaces")
}

Output

Rawr!!
No need for spaces

See also

print_raw who does not print implicit spaces and a new line.