15 lines
341 B
Scheme
15 lines
341 B
Scheme
|
;;;; type-checks.scm -*- Scheme -*-
|
||
|
;;;; Kon Lovett, Jul '18
|
||
|
;;;; Kon Lovett, Jun '17
|
||
|
;;;; Kon Lovett, Apr '09
|
||
|
|
||
|
(module type-checks ()
|
||
|
|
||
|
(import scheme)
|
||
|
(import (chicken module))
|
||
|
|
||
|
(import type-checks-basic type-checks-atoms type-checks-structured)
|
||
|
(reexport type-checks-basic type-checks-atoms type-checks-structured)
|
||
|
|
||
|
) ;module type-checks
|