Crystal equivalent shard for "pp" (pretty printing)

Viewed 397

What is the Crystal equivalent shard for "pp" used in Ruby for pretty printing complex data structures ?

1 Answers

PrettyPrint is a part of a Crystal stdlib.

In short, you can just do p obj for "inspect" style output, pp obj for "pretty inspect" style output.

Related