diff --git a/CHANGELOG.md b/CHANGELOG.md index bb6b4ca..200adb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index e176af5..441b881 100644 --- a/README.md +++ b/README.md @@ -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); }, } @@ -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()); ```