Skip to main content

Printing

16
  • flush

    Flushes the output stream that is the current value of *out*

  • newline

    Writes a platform-specific newline to *out*

  • pr

    Prints the object(s) to the output stream that is the current value of *out*. Prints the object(s), separated by spac...

  • pr-str

    pr to a string, returning it

  • print

    Prints the object(s) to the output stream that is the current value of *out*. print and println produce output for hu...

  • print-str

    print to a string, returning it

  • printf

    Prints formatted output, as per format

  • println

    Same as print followed by (newline)

  • println-str

    println to a string, returning it

  • prn

    Same as pr followed by (newline). Observes *flush-on-newline*

  • prn-str

    prn to a string, returning it

  • with-out-str

    Evaluates exprs in a context in which *out* is bound to a fresh StringWriter. Returns the string created by any neste...