diff options
-rw-r--r-- | README.md | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -28,6 +28,16 @@ For example, try $ bin/asm2wasm test/hello_world.asm.js ``` +That input file contains + +``` + function add(x, y) { + x = x | 0; + y = y | 0; + return x + y | 0; + } +``` + You should see something like this:  |