Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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 2 months ago
JSON representation

💄 Pretty print values with style!

Awesome Lists containing this project

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 pprint

pub 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
```