display


display(obj, stream = current_writer())
      

Write the compiled (or internal) representation of the object obj to the output-stream. Print strings without quotes. Return void.

Examples:


display([1, 2, 3])
//> (1 2 3)
display("hello, world")
//> hello, world
      

Also see:

write
show
print
newline


Core Module Index | Contents