Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 months 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 (8 months ago)
- Default Branch: master
- Last Pushed: 2024-04-26T12:36:27.000Z (7 months ago)
- Last Synced: 2024-07-16T03:50:33.468Z (4 months ago)
- Topics: debugging, gleam, pretty-print, pretty-printer, pretty-printing, testing
- Language: Gleam
- Homepage: https://hexdocs.pm/pprint/
- Size: 53.7 KB
- Stars: 27
- Watchers: 1
- Forks: 1
- 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
[![Package Version](https://img.shields.io/hexpm/v/pprint)](https://hex.pm/packages/pprint)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](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
```