Does emacs have support for big numbers that don't fit in integers? If it does, how do I use them?
相关问题
- emacs bind key to the insertion of another
- Emacs - set mark on edit location
- Emacs CEDET Semantic tag folding
- how to return function in elisp
- How to make Emacs lock-buffer fail when it cannot
相关文章
- Does learning one Lisp help in learning the other?
- Why BigInteger in java is designed to be immutable
- How to permanently enable the hs-minor-mode in ema
- Sum a list of BigIntegers
- How do I control emacs from a terminal?
- Openssl, Invalid arguments ' Candidates are: i
- Advice for “kill-ring-save”
- Custom shells started automatically from .emacs
calc.el
is part of the GNU Emacs distribution. See its source code for available functions. You can immediately start playing with it by typingM-x quick-calc
. You may also want to check bigint.el package, that is a non-standard, lightweight implementation for handling bignums.