racket/collects/2htdp/private/utilities.rkt
Matthias Felleisen fe67f369fa prep for debugging
2010-05-24 10:09:01 -04:00

11 lines
155 B
Racket

#lang racket
(provide/contract
;; like the unix debugging facility
[tee (-> symbol? any/c any)]
)
(define (tee tag x)
(printf "~a ~s\n" tag x)
x)