Hi,
Is there a simple way to return the fractional part of a number in common lisp?
At the moment I am using
Is there a simple way to return the fractional part of a number in common lisp?
At the moment I am using
(multiple-value-call (lambda (x y)(declare (ignore x)) y) (floor 1.5))
but this seems a bit verbose.