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
.
display([1, 2, 3])
//> (1 2 3)
display("hello, world")
//> hello, world