aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNerdyPepper <[email protected]>2019-07-02 14:11:05 +0100
committerNerdyPepper <[email protected]>2019-07-02 14:11:05 +0100
commitd5d995b8bcc325b640ce81624ad667290a28889e (patch)
tree6c07e36e9f5c483ebc5552cf374362d5e2c65d6f
parent121f0c4c15bbee17a87a289703a8740321e1a652 (diff)
upd8 readme
-rw-r--r--readme.md21
1 files changed, 18 insertions, 3 deletions
diff --git a/readme.md b/readme.md
index 2c1998a..10f1e18 100644
--- a/readme.md
+++ b/readme.md
@@ -3,9 +3,9 @@
3 3
4# eva 4# eva
5 5
6simple calculator REPL, similar to `bc(1)` 6simple calculator REPL, similar to `bc(1)`, with syntax highlighting and persistent history
7 7
8![eva.png](https://files.nerdypepper.me/Kt.png) 8![eva.png](https://files.nerdypepper.me/kP.png)
9 9
10### installation 10### installation
11 11
@@ -55,6 +55,18 @@ type out an expression and hit enter, repeat.
554.53553 554.53553
56``` 56```
57 57
58### updating
59
60 - crates.io
61 ```shell
62$ cargo install eva --force
63 ```
64
65 - manual
66```shell
67$ cargo install --force --path /path/to/eva
68```
69
58### operators 70### operators
59 71
60 - binary operators: `+ - * / ^` 72 - binary operators: `+ - * / ^`
@@ -62,7 +74,7 @@ type out an expression and hit enter, repeat.
62 74
63### functions 75### functions
64 76
65All trignometric functions expect input in degrees. 77all trignometric functions expect input in degrees.
66 78
67``` 79```
68sin cos tan csc sec cot sinh cosh tanh 80sin cos tan csc sec cot sinh cosh tanh
@@ -101,9 +113,12 @@ log(100) # yes
101Domain Error: Out of bounds! 113Domain Error: Out of bounds!
102``` 114```
103 115
116 - syntax highlighting
117
104### todo 118### todo
105 119
106 - add support for variables (ans, pi, e) 120 - add support for variables (ans, pi, e)
121 - ~~syntax highlighting~~
107 - multiple arg functions 122 - multiple arg functions
108 - ~~screenshots~~ 123 - ~~screenshots~~
109 - ~~create logo~~ 124 - ~~create logo~~