Skip to main content

Printing

12
  • newline

    Prints a newline using *print-fn*

  • pr

    Prints the object(s) using string-print. Prints the object(s), separated by spaces if there is more than one. By defaul...

  • pr-str

    pr to a string, returning it. Fundamental entrypoint to IPrintWithWriter.

  • print

    Prints the object(s) using string-print. print and println produce output for human consumption.

  • 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).

  • prn-str

    Same as pr-str followed by (newline)

  • with-out-str

    Evaluates exprs in a context in which *print-fn* is bound to .append on a fresh StringBuffer. Returns the string create...