Skip to content

Commit a25a1a0

Browse files
Merge pull request #429 from Kindelia/experimental
Fixed README and kind binary
2 parents da2b235 + 53f82b4 commit a25a1a0

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ map a b Nil f = Nil
2525
map a b (Cons head tail) f = Cons (f head) (map tail f)
2626
```
2727

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

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

61+
### Warning:
62+
New versions probably are not in `cargo`, so you can install the current version of kind2 by following these instructions:
63+
64+
1. Install Rust Nightly Toolchain
65+
2. Clone the repository
66+
3. `cargo install --path crates/kind-cli --force`
67+
6168
Then, use any of the commands below:
6269

6370
Command | Usage | Note

crates/kind-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
keywords = ["functional", "language", "type-theory", "proof-assistant"]
99

1010
[[bin]]
11-
name = "kind"
11+
name = "kind2"
1212
path = "src/main.rs"
1313

1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

rust-toolchain

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nightly

0 commit comments

Comments
 (0)