racket/collects/lang/posn.ss
2005-05-27 18:56:37 +00:00

6 lines
162 B
Scheme

;; The posn struct for the teaching languages
(module posn mzscheme
(define-struct posn (x y) (make-inspector)) ; transparent
(provide (struct posn (x y))))