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