6 lines
199 B
Racket
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)
|