13 lines
380 B
Racket
13 lines
380 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))])
|
|
(eprintf "~a" msg)))))
|