zero/home-environments/radio/files/.local/bin/prettify-sexp

11 lines
194 B
Plaintext
Raw Permalink Normal View History

#!/usr/bin/env -S guile
!#
(use-modules (ice-9 pretty-print)
(ice-9 match))
(pretty-print
(match (command-line)
[(_) (read)]
[(_ str) (with-input-from-string str read)]))