While trying https://wasmedge.org/book/en/quick_start/run_cli.html#call-a-webassembly-function-compiled-from-rust on Windows 10 as: ```powershell .\wasmedge.exe --reactor .\add.wasm add -10 1 ``` It returned an unexpected value of: ```plain 4294967287 ``` Is this expected? From what I understood, the [rust add example](https://github.com/second-state/wasm-learning/blob/master/cli/add/src/lib.rs) uses a [rust i32 (signed integer)](https://doc.rust-lang.org/std/primitive.i32.html), so this result is unexpected to me.