Hi, Just for the sake of completeness.
In constructor-style-print.rkt, I've switched on the printing of booleans as "true" and "false" as follows (editing line 14): ;; print-convert/constructor-style : Any -> Any (define (print-convert/constructor-style v) (parameterize ([constructor-style-printing #true] [booleans-as-true/false #true]) (print-convert v))) and also turned a write into a pretty-write at line 24, so that a newline is printed after each value: ;; constructor-style-print : Any [Output-Port] [(U 0 1)] -> Void ;; Prints v using constructor-style printing (without pretty-printing). (define (constructor-style-print v [out (current-output-port)] [qdepth 0]) (parameterize ([print-reader-abbreviations #true]) (pretty-write (print-convert/constructor-style v) out))) This is closer to the behavior of drracket's constructor style printing. Maybe there are better ways to achieve the same result, though. Best, Delphine -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.