Add test to call_fn with String parameter.

This commit is contained in:
Stephen Chung
2020-06-12 18:46:36 +08:00
parent 9d91349513
commit 5275778952
2 changed files with 9 additions and 1 deletions

View File

@@ -316,7 +316,7 @@ Functions declared with `private` are hidden and cannot be called from Rust (see
// Define functions in a script.
let ast = engine.compile(true,
r#"
// a function with two parameters: String and i64
// a function with two parameters: string and i64
fn hello(x, y) {
x.len + y
}