aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNerdyPepper <[email protected]>2019-03-27 08:42:30 +0000
committerNerdyPepper <[email protected]>2019-03-27 08:42:30 +0000
commit42476911733ae8baa7baac2ce31b672ef525ec5f (patch)
treefeef834691cbdc6af3a54fca312c8a6fed5b3579
parent36bffabb60794c930e8763baad7d87a7d890aef9 (diff)
update functions list, add more goals
-rw-r--r--readme.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/readme.md b/readme.md
index 447d58d..1f85365 100644
--- a/readme.md
+++ b/readme.md
@@ -33,10 +33,10 @@ type out an expression and hit enter, repeat.
33 33
34### functions 34### functions
35 35
36fn(x: Number) -> Number 36All trignometric functions expect input in degrees.
37 37
38``` 38```
39sin 39sin
40cos 40cos
41tan 41tan
42csc 42csc
@@ -45,11 +45,14 @@ cot
45sinh 45sinh
46cosh 46cosh
47tanh 47tanh
48ln 48ln
49log 49log
50sqrt 50sqrt
51ceil 51ceil
52floor 52floor
53deg(x) - convert x to degrees
54rad(x) - convert x to radians
55abs(x) - (x * x) ^ 0.5
53``` 56```
54 57
55examples: 58examples:
@@ -77,6 +80,7 @@ ans: 6
77### todo 80### todo
78 81
79 - ~~add detailed error handler~~ 82 - ~~add detailed error handler~~
83 - add support for variables (ans, pi, e)
80 - multiple arg functions 84 - multiple arg functions
81 - ~~unary operators (minus, plus)~~ 85 - ~~unary operators (minus, plus)~~
82 - screenshots 86 - screenshots