Skip to content

Version 1.1.3

Compare
Choose a tag to compare
@printfn printfn released this 28 Nov 09:29
· 290 commits to main since this release

Changes in this version:

  • Add operators for permutations and combinations (by @frectonz)
    • n permute k or n nPr k: compute the number of k-permutations of n
    • n choose k or n nCr k: number of k-combinations of n
  • Add @noapprox attribute to hide the approx. annotation in the output:
    > pi
    approx. 3.1415926535
    > @noapprox pi
    3.1415926535
    
  • Add @plain_number attribute, to remove approx. 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