13 lines
444 B
Scheme
13 lines
444 B
Scheme
#!r6rs
|
|
(library (srfi 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 (rnrs) (rnrs r5rs) (srfi private include))
|
|
|
|
(include/resolve ("srfi" "%3a141") "srfi-141-impl.scm"))
|