;;;; number-limits.scm -*- Scheme -*- ;;;; Kon Lovett, Mar '20 ;;;; Kon Lovett, Oct '17 (module number-limits () (import scheme) (import (chicken base)) (import (chicken module)) (import (chicken foreign)) (import float-limits) (import int-limits) (reexport float-limits int-limits) ) ;module number-limits