ywatds/aux/math.scm

6 lines
107 B
Scheme
Raw Permalink Normal View History

2021-09-06 03:41:24 -07:00
(define-module (aux math)
#:export (floor-exact))
(define (floor-exact n)
(floor (inexact->exact n)))