14 lines
402 B
Racket
14 lines
402 B
Racket
(module only-once mzscheme
|
|
(provide maybe-print-message)
|
|
|
|
(define already-printed? #f)
|
|
|
|
(define (maybe-print-message msg)
|
|
(unless already-printed?
|
|
(set! already-printed? #t)
|
|
;; the output port may no longer be there, in which case
|
|
;; we just give up on printing
|
|
(with-handlers ([exn:fail? (lambda (x) (void))])
|
|
(fprintf (current-error-port) "~a" msg)))))
|
|
|