chibi-scheme/lib/srfi/27.module
Alex Shinn 695b44332e adding interface to bytecode-literals
(need to check these when debugging gc)
2010-12-05 16:53:38 -08:00

11 lines
414 B
Text

(define-module (srfi 27)
(export random-integer random-real default-random-source
make-random-source random-source?
random-source-state-ref random-source-state-set!
random-source-randomize! random-source-pseudo-randomize!
random-source-make-integers random-source-make-reals)
(import-immutable (scheme))
(include-shared "27/rand")
(include "27/constructors.scm"))