]> git.proxmox.com Git - rustc.git/blob - src/binaryen/test/hello_world.asm.js
New upstream version 1.23.0+dfsg1
[rustc.git] / src / binaryen / test / hello_world.asm.js
1 function () {
2 "use asm";
3 function add(x, y) {
4 x = x | 0;
5 y = y | 0;
6 return x + y | 0;
7 }
8 return { add: add };
9 }
10