write


write(obj, stream = current_writer())
      

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

Examples:


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

Also see:

display
show
print


Core Module Index | Contents