summaryrefslogtreecommitdiffstats
path: root/test.scm
diff options
context:
space:
mode:
authorGravatar Daphne Preston-Kendal 2022-11-26 12:54:03 +0100
committerGravatar Daphne Preston-Kendal 2022-11-26 12:54:03 +0100
commitfa64d7d392230cfa7e2ec52ebb279d9913ccc736 (patch)
tree03c879545fd7f30a0b77ed13302d52d740c3411a /test.scm
parentcopy edit (diff)
Specify base cases and behaviours of each comparator function
Diffstat (limited to 'test.scm')
-rw-r--r--test.scm11
1 files changed, 11 insertions, 0 deletions
diff --git a/test.scm b/test.scm
new file mode 100644
index 0000000..305a4dc
--- /dev/null
+++ b/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))
+
+
+