You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 11, 2020. It is now read-only.
Currently wasm-run executes every exported function.
I modified it to execute expressions given as command line arguments in post fix order. e.g.: wasm-run file.wasm 1 2 neg 3 add (where neg takes one and add takes 2 arguments).
Currently wasm-run executes every exported function.
I modified it to execute expressions given as command line arguments in post fix order. e.g.:
wasm-run file.wasm 1 2 neg 3 add
(where neg takes one and add takes 2 arguments).Maybe you find it useful.
(i use it in my wasm compiler for a custom language: https://github.com/ktye/i/tree/master/_/w)
The text was updated successfully, but these errors were encountered: