mdhughes.tech
Formatting Strings in Scheme - Mark writes
Most of the time I use primitive display, or print functions: ;; displays a series of args to stdout (define (print . args) (for-each display args) (flush-output-port) ) ;; displays a series of arg…