Skip to content

Commit

Permalink
fix: readme and added rust-toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
algebraic-dev committed Dec 1, 2022
1 parent 023369a commit 53f82b4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ map a b Nil f = Nil
map a b (Cons head tail) f = Cons (f head) (map tail f)
```

Side-effective programs are written via monadic monads, resembling [Rust](https://www.rust-lang.org/) and [TypeScript](https://www.typescriptlang.org/):
Side-effective programs are written via monads, resembling [Rust](https://www.rust-lang.org/) and [TypeScript](https://www.typescriptlang.org/):

```javascript
// Prints the double of every number up to a limit
Expand Down Expand Up @@ -58,6 +58,13 @@ First, install [Rust](https://www.rust-lang.org/tools/install) first, then enter
cargo install kind2
```

### Warning:
New versions probably are not in `cargo`, so you can install the current version of kind2 by following these instructions:

1. Install Rust Nightly Toolchain
2. Clone the repository
3. `cargo install --path crates/kind-cli --force`

Then, use any of the commands below:

Command | Usage | Note
Expand Down
1 change: 1 addition & 0 deletions rust-toolchain
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nightly

0 comments on commit 53f82b4

Please sign in to comment.