racket/collects/htdp/color-structs.rkt
2012-07-04 10:55:55 -05:00

6 lines
199 B
Racket

#lang racket/base
(provide (struct-out color)
(struct-out alpha-color))
(define-struct color (red green blue) #:transparent)
(define-struct alpha-color (alpha red green blue) #:transparent)