diff options
| author | 2022-11-26 12:54:03 +0100 | |
|---|---|---|
| committer | 2022-11-26 12:54:03 +0100 | |
| commit | fa64d7d392230cfa7e2ec52ebb279d9913ccc736 (patch) | |
| tree | 03c879545fd7f30a0b77ed13302d52d740c3411a /test.scm | |
| parent | copy edit (diff) | |
Specify base cases and behaviours of each comparator function
Diffstat (limited to 'test.scm')
| -rw-r--r-- | test.scm | 11 |
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)) + + + |
