Skip to content

Commit

Permalink
Updated README with new features and updated version numbers.
Browse files Browse the repository at this point in the history
  • Loading branch information
PaddiM8 committed Jun 14, 2020
1 parent 4859d78 commit d3d2602
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Kalk is a calculator (both program and library) that supports user-defined varia
* Special-symbol completion on tab. Eg. write `sqrt` and press tab. It will be turned into ``.
* Sum function: `sum(start, to, expression)` Eg. `sum(1, 3, 2n+1)` is the same as `2*1+1 + 2*2+1 + 2*3+1` = `15`
* Load a file including predefined functions and constants. For example, if you're going to use Kalk for physics, you load up your file with physics functions/constants when starting Kalk. `-i file`
* Misc: separate expressions by a semicolon to write them on the same line, use the `ans` variable to get the value of the previously calculated expression.

## Installing
Make sure you have `diffutils` `gcc` `make` and `m4` installed. **If you use windows:** [follow the instructions here](https://docs.rs/gmp-mpfr-sys/1.2.3/gmp_mpfr_sys/index.html#building-on-windows)
Expand Down
2 changes: 1 addition & 1 deletion kalk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kalk"
version = "0.1.10"
version = "0.1.11"
authors = ["PaddiM8"]
edition = "2018"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions kalk_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kalk_cli"
version = "0.1.9"
version = "0.1.10"
authors = ["PaddiM8"]
edition = "2018"
readme = "../README.md"
Expand All @@ -15,7 +15,7 @@ path = "src/main.rs"
name = "kalk"

[dependencies]
kalk = { path = "../kalk", version = "^0.1.10" }
kalk = { path = "../kalk", version = "^0.1.11" }
rustyline = "6.1.2"
ansi_term = "0.12"
regex = "1"
Expand Down

0 comments on commit d3d2602

Please sign in to comment.