Artifact Content
Not logged in

Artifact b7e102ec9f513b591c12529df49d8c9ca5453c56:



(define (call-with-output-string f)
  (let ((port (open-output-string)))
    (let () (f port))
    (get-output-string port)))