racket/collects/2htdp/private/utilities.rkt
2011-06-28 02:01:41 -04:00

12 lines
156 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)