summaryrefslogtreecommitdiffstats
path: root/srfi/srfi-228-test.scm
blob: 305a4dc65f07e42635d18ec68bf7b891d5e51f00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
(import (chibi test))

(define-record-type <date>
  (make-date year month day)
  date?
  (year date-year)
  (month date-month)
  (day date-day))