mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 13:49:17 +02:00
10 lines
404 B
Scheme
10 lines
404 B
Scheme
|
|
(define-library (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 (scheme))
|
|
(include-shared "27/rand")
|
|
(include "27/constructors.scm"))
|