https://github.com/MystPi/pprint
💄 Pretty print values with style!
https://github.com/MystPi/pprint
debugging gleam pretty-print pretty-printer pretty-printing testing
Last synced: about 1 hour ago
JSON representation
💄 Pretty print values with style!
- Host: GitHub
- URL: https://github.com/MystPi/pprint
- Owner: MystPi
- License: apache-2.0
- Created: 2024-03-04T23:34:09.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-04-03T19:21:22.000Z (about 1 month ago)
- Last Synced: 2025-04-25T08:45:09.232Z (14 days ago)
- Topics: debugging, gleam, pretty-print, pretty-printer, pretty-printing, testing
- Language: Gleam
- Homepage: https://hexdocs.pm/pprint/
- Size: 66.4 KB
- Stars: 34
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-gleam - pprint - [📚](https://hexdocs.pm/pprint/) - Pretty print values with style! (Packages / Gleam)
README
# pprint
[](https://hex.pm/packages/pprint)
[](https://hexdocs.pm/pprint/)💄 Pretty print values with style!
```sh
gleam add pprint --dev
``````gleam
import pprintpub fn main() {
Ok(["my", "super", "awesome", "useless", "list"])
|> pprint.debug
}// Prints (with color!):
// Ok([
// "my",
// "super",
// "awesome",
// "useless",
// "list",
// ])
```Further documentation can be found at .
## Development
```sh
gleam run # Run the project
gleam test # Run the tests
```