Changes in this version:
- Add operators for permutations and combinations (by @frectonz)
n permute k
orn nPr k
: compute the number ofk
-permutations ofn
n choose k
orn nCr k
: number ofk
-combinations ofn
- Add
@noapprox
attribute to hide theapprox.
annotation in the output:> pi approx. 3.1415926535 > @noapprox pi 3.1415926535
- Add
@plain_number
attribute, to removeapprox.
and any units. This is especially useful in automated scripts.> 5 m / (3 s) approx. 1.6666666666 m / s > @plain_number 5 m / (3 s) 1.6666666666
- Add a new date literal syntax, e.g.
@2000-01-01
- Improve visual feedback when using the Telegram bot (by @miki-tebe)
- Add new SI prefixes quecca, ronna, ronto and quecto (by @frectonz)
- Add support for 256 (8-bit) colors in the CLI configuration
- Change
!debug
to@debug
for consistency and improved shell script interoperability