13 lines
370 B
Scheme
13 lines
370 B
Scheme
#!r6rs
|
|
(library (srfi :141)
|
|
(export
|
|
ceiling/ ceiling-quotient ceiling-remainder
|
|
floor/ floor-quotient floor-remainder
|
|
truncate/ truncate-quotient truncate-remainder
|
|
round/ round-quotient round-remainder
|
|
euclidean/ euclidean-quotient euclidean-remainder
|
|
balanced/ balanced-quotient balanced-remainder)
|
|
(import (srfi :141 integer-division)))
|
|
|
|
|