From 73c1569b17dedf7ab4bf9d8b592acae7fa91864c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ad=C3=A1m=20Brudzewsky?= Date: Thu, 3 Jun 2021 00:01:20 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20=E2=8C=8B=E2=8C=8A,=20add=20[]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- cli/help.txt | 2 +- kalk/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a1e5732..b5f8c24 100644 --- a/README.md +++ b/README.md @@ -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)` diff --git a/cli/help.txt b/cli/help.txt index c88a509..237693e 100644 --- a/cli/help.txt +++ b/cli/help.txt @@ -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) diff --git a/kalk/README.md b/kalk/README.md index 8c1ff91..7ff4e4a 100644 --- a/kalk/README.md +++ b/kalk/README.md @@ -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`