show


show(@key stream = current_writer(), quotes = false, obj1, ...)
      

Write the textual representation of the objects obj1 ... to the output-stream stream. If quotes is true, output the enclosing quotes for strings and symbols. After writing obj1 ..., return void.

Examples:


show("hello, world")
//> hello, world
show(quotes = true, "hello, world")
//> "hello, world"

      

Also see:

showln
display
write
print


Core Module Index | Contents