Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
eerohele committed Nov 13, 2024
1 parent 8454e78 commit be5fcc5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,15 @@ user=> (clojure.pprint/pprint (->R 1))
nil
```

Furthermore, `clojure.pprint/pprint` prints Java arrays with commas, pp prints them without:

```clojure
user=> (clojure.pprint/pprint (char-array [\c \p \p]))
[\c, \p, \p]
user=> (me.flowthing.pp/pprint (char-array [\p \p]))
[\p \p]
```

In addition, there are one or two other minor, insignificant differences in where `clojure.pprint/pprint` and pp insert line breaks. If you spot these and they bother you, file an issue.

## Differences to Fipp
Expand Down

0 comments on commit be5fcc5

Please sign in to comment.