scribble-enhanced/collects/tests/scribble/docs/print-lines.txt
Matthew Flatt 96abeaed70 Scribble: fixes for text output, especially inset nested flows
original commit: d00c8a6c71c9f31c0e919014c42ed1b659103d9b
2011-03-30 19:53:32 -06:00

18 lines
1.0 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Pretty-Print-Handler Bug Example
Example:
> '((x "positional 1")
      (rest ("positional 2" "positional 3"))
      (a ())
      (b ("b-arg"))
      (c (("first c1" "second c1") ("first c2" "second c2")))
      (d #f)
      (e ()))
'((x "positional 1")
  (rest ("positional 2" "positional 3"))
  (a ())
  (b ("b-arg"))
  (c (("first c1" "second c1") ("first c2" "second c2")))
  (d #f)
  (e ()))