10000 GitHub - MystPi/pprint: 💄 Pretty print values with style!
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

MystPi/pprint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pprint

Package Version Hex Docs

💄 Pretty print values with style!

gleam add pprint --dev
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 https://hexdocs.pm/pprint.

Development

gleam run   # Run the project
gleam test  # Run the tests
0