diff options
| author | 2021-08-28 20:00:00 +0200 | |
|---|---|---|
| committer | 2021-08-28 20:00:00 +0200 | |
| commit | adf9bfe598bfe4332165f0aeb59c3c412cb5574a (patch) | |
| tree | aa22e3ef17933f8b257d861f5e42e0ec678300c2 /composing-comparators-test.scm | |
| parent | Fix a Markdown delimiter in the wrong place. (diff) | |
it’s an SRFI
Diffstat (limited to '')
| -rw-r--r-- | composing-comparators-test.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/composing-comparators-test.scm b/composing-comparators-test.scm new file mode 100644 index 0000000..305a4dc --- /dev/null +++ b/composing-comparators-test.scm @@ -0,0 +1,11 @@ +(import (chibi test)) + +(define-record-type <date> + (make-date year month day) + date? + (year date-year) + (month date-month) + (day date-day)) + + + |
