summaryrefslogtreecommitdiffstats
path: root/composing-comparators-test.scm
diff options
context:
space:
mode:
authorGravatar Daphne Preston-Kendal 2021-08-28 20:00:00 +0200
committerGravatar Daphne Preston-Kendal 2021-08-28 20:00:00 +0200
commitadf9bfe598bfe4332165f0aeb59c3c412cb5574a (patch)
treeaa22e3ef17933f8b257d861f5e42e0ec678300c2 /composing-comparators-test.scm
parentFix a Markdown delimiter in the wrong place. (diff)
it’s an SRFI
Diffstat (limited to '')
-rw-r--r--composing-comparators-test.scm11
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))
+
+
+