summaryrefslogtreecommitdiff
path: root/test/hello_world.asm.js
blob: a41fe1a65949d043965d5236722284ace283bcf4 (plain)
1
2
3
4
5
6
7
8
9
10
function () {
  "use asm";
  function add(x, y) {
    x = x | 0;
    y = y | 0;
    return x + y | 0;
  }
  return { add: add };
}