mes: Add ceil, floor, round, inexact->exact.
* mes/module/mes/scm.mes (ceil, floor, round, inexact->exact, exact->inexact): New function.
This commit is contained in:
parent
0e1d98963c
commit
06bf0fd6a3
|
@ -368,6 +368,12 @@
|
|||
(lambda args
|
||||
(not (apply proc args))))
|
||||
|
||||
(define ceil identity)
|
||||
(define floor identity)
|
||||
(define round identity)
|
||||
(define inexact->exact identity)
|
||||
(define exact->inexact identity)
|
||||
|
||||
(define (const . rest)
|
||||
(lambda (. _)
|
||||
(car rest)))
|
||||
|
|
Loading…
Reference in a new issue