Scheme printf
List of: Discussion Topic
Subjects: Scheme AIDE Application, Scheme Interface
Contents: Scheme Support

Example 2-20 implements a pseudo -printf command in Scheme.

; ------------------------------------------------------------
; Printf
; ------------------------------------------------------------
(define printf (lambda l (apply format (cons #t l)) (newline)))

Example 2-20. Scheme printf
PDF/SCM/02SCPRC.PDF
HTM/DATA/SCM/SCM/02SCPRC/0019.HTM