small fix

This commit is contained in:
fro
2017-08-29 20:02:48 +03:00
parent cfe80e364e
commit aba747fb23
2 changed files with 2 additions and 2 deletions

View File

@@ -38,6 +38,6 @@ fn main() {
// The argument should be parsable as a valid integer
let argument: i32 = args[2].parse().expect("Integer argument required");
// "_call" export of function to be executed with an i32 argument. It prints a
// "_call" export of function to be executed with an i32 argument and prints the result of execution
println!("Result: {:?}", module.execute_export("_call", vec![parity_wasm::RuntimeValue::I32(argument)].into()));
}