Merge pull request #46 from abrudz/master

Fix ⌋⌊, add []
This commit is contained in:
PaddiM8 2021-06-03 01:07:14 +02:00 committed by GitHub
commit c34e9043c5
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ Kalker (or "kalk") is a calculator program/website that supports user-defined va
## Features
* Operators: +, -, \*, /, !
* Groups: (), ⌈⌉, ⌋⌊
* Groups: (), ⌈⌉, ⌊⌋, []
* [Pre-defined functions and constants](https://github.com/PaddiM8/kalker/blob/master/kalk/src/prelude.rs)
* User-defined functions and variables. `f(x, y) = xy`, `x = 5`
* Derivative of functions (derivatives of noisy functions or of higher order can be a bit inaccurate). `f'(2)`, `sin'(-pi)`

View File

@ -1,6 +1,6 @@
Overview of features
Operators: +, -, *, /, !, %
Groups: (), ⌈⌉, ⌋⌊
Groups: (), ⌈⌉, ⌊⌋, []
Pre-defined functions and constants
User-defined functions and variables
User-defined units (experimental and limited)

View File

@ -10,7 +10,7 @@ f(a, 2)
## Features
* Operators: +, -, \*, /, !
* Groups: (), ⌈⌉, ⌋⌊
* Groups: (), ⌈⌉, ⌊⌋, []
* [Pre-defined functions and constants](https://github.com/PaddiM8/kalk/blob/master/kalk/src/prelude.rs)
* User-defined functions and variables. `f(x, y) = xy`, `x = 5`
* Understands fairly ambiguous syntax. Eg. `2sin50 + 2xy`