Skip to content

Commit

Permalink
finishing touches of v0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
WeirdConstructor committed Aug 5, 2020
1 parent 4043cc7 commit 2a3ad5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
0.6.3 (unreleased)
0.6.3 (2020-08-06)
==================

* Incompatible Change: Renamed `std:io:file:copy` to `std:fs:copy`.
* Incompatible Change: Renamed `error_to_str` to `std:error_to_str`.
* Documentation: Improved `std:shuffle` documentation, and added all missing
function documentation.
* Documentation: Completed standard library function reference documentation.
* Feature: `std:rand :i64` now returns an integer in the full i64 range.
* Feature: Implemented slicing operations for calling pairse and integer vectors
with vectors and iterators.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Here you can find the [WLambda Language Reference](https://docs.rs/wlambda/newes
```rust
use wlambda::*;

match wlambda::compiler::eval("40 + 2") {
match wlambda::eval("40 + 2") {
Ok(v) => { println!("Output: {}", v.s()); },
Err(e) => { eprintln!("Error: {}", e); },
}
Expand Down Expand Up @@ -449,7 +449,7 @@ Here is how you can quickly evaluate a piece of WLambda code:

```rust
let s = "$[1,2,3]";
let r = wlambda::compiler::eval(&s).unwrap();
let r = wlambda::eval(&s).unwrap();
println!("Res: {}", r.s());
```

Expand Down

0 comments on commit 2a3ad5e

Please sign in to comment.