JanetDocsSourcePlaygroundTutorialsI'm Feeling luckyCommunityGitHub sign in

pp

core-api


    function
    boot.janet on line 1901, column 1

    (pp x)

    Pretty-print to stdout or `(dyn *out*)`. The format string used is 
    `(dyn *pretty-format* "%q")`.


See also:printprintf1 exampleSign in to add an example
Loading...
# many terminals will truncate long data, use this if you need to see/copypaste it:
(defn full-print `Print a large DS without truncation` [ds] (print (string/format "%m" ds)))
veqqqPlayground