Description
Pretty printing a diff of two values.
Description
Please see the README at https://github.com/stoeffel/pretty-diff.
README.md
pretty-diff
Pretty printing a diff of two values.
Usage
import qualified Pretty.Diff as Diff
import Data.Default (def)
Diff.pretty def "1234" "_23"
Will create a string that looks like this:
▼ ▼
"1234"
╷
│
╵
"_23"
▲