5f724296dd
Example:
```
$ python -m mpmath --prec 100 --no-ipython
>>> 10.9
mpf('10.899999999999999999999999999995')
>>> mpf(1090/100)
mpf('10.899999999999999999999999999995')
>>> mpf('10.9')
mpf('10.899999999999999999999999999995')
>>> mpf(109)/mpf(10)
mpf('10.899999999999999999999999999995')
>>> mpf(10.9)
mpf('10.899999999999999999999999999995')
```
Closes #677
Closes #765
9 lines
166 B
ReStructuredText
9 lines
166 B
ReStructuredText
.. _cli:
|
|
|
|
Command-Line Usage
|
|
==================
|
|
|
|
When called as a program from the command line, the following form is used:
|
|
|
|
.. autoprogram:: mpmath.__main__:parser
|