mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 22:29:16 +02:00
11 lines
414 B
Text
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"))
|
|
|