mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 21:59:16 +02:00
13 lines
415 B
Markdown
13 lines
415 B
Markdown
# Pretty Print Library
|
|
|
|
The `(scheme cyclone pretty-print)` library provides a pretty-printer for code formatting.
|
|
|
|
- [`pretty-print`](#pretty-print)
|
|
|
|
# pretty-print
|
|
|
|
(pretty-print obj)
|
|
(pretty-print obj port)
|
|
|
|
Outputs object to the given output port, or the current output port if none is given. The output is automatically indented just like it would be in a source code file, to make it easier to read.
|
|
|