diff options
| author | 2022-11-14 15:15:08 -0800 | |
|---|---|---|
| committer | 2022-11-14 15:15:08 -0800 | |
| commit | 8298764c6b8a16490b28cccb9ab87a5ebb20234d (patch) | |
| tree | a6f6915a6c0b7ffec3b4b995be2fc20979a2bfb2 /srfi/srfi-228-test.scm | |
| parent | Link to landing pages, not documents. (diff) | |
Move to "srfi/" directory. Follow naming convention.
Diffstat (limited to 'srfi/srfi-228-test.scm')
| -rw-r--r-- | srfi/srfi-228-test.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/srfi/srfi-228-test.scm b/srfi/srfi-228-test.scm new file mode 100644 index 0000000..305a4dc --- /dev/null +++ b/srfi/srfi-228-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)) + + + |
