diff options
Diffstat (limited to 'test/hello_world.asm.js')
-rw-r--r-- | test/hello_world.asm.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/hello_world.asm.js b/test/hello_world.asm.js deleted file mode 100644 index a41fe1a65..000000000 --- a/test/hello_world.asm.js +++ /dev/null @@ -1,10 +0,0 @@ -function () { - "use asm"; - function add(x, y) { - x = x | 0; - y = y | 0; - return x + y | 0; - } - return { add: add }; -} - |