/VPrettyPrint

Pretty printing module for the V programming language

Primary LanguageV

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"
  ]
}