README.md

January 25, 2022 ยท View on GitHub

General purpose pretty printer for the V programming language.

import prettyprint as pp

fn main() {
  pp.pprint('{"id": 123, "names": ["pretty", "printer"]}')
}
{
  "id": 123,
  "names": [
    "pretty",
    "printer"
  ]
}