I eval a lisp expression in scratch
(+ (/ 1 2) (/ 1 2))
I got a 0.
normally it should be 1.
|
|
As Oleg points out, operators usually default to integer arithmetic unless you include floating point arguments (like With respect to your question about rational number support, emacs-calc (which is part of emacs) supports many number types including fractions (i.e. rational numbers), complex numbers, infinite precision integers, etc. Your code must call emacs-calc functions (instead of http://www.gnu.org/software/emacs/manual/html_mono/calc.html#Fractions http://www.gnu.org/software/emacs/manual/html_mono/calc.html#toc_Lisp-Function-Index |
|||
|
|
|
Try this way
According to emacs doc
|
|||||
|
|
You can read all about numbers in elisp here: C-hig As already indicated by tripleee, it is apparent that the answer is "no". |
|||
|
|