| ... | ... | @@ -10543,8 +10543,8 @@ const typedArray = new Uint8Array(source); |
| 10543 | 10543 | |
| 10544 | 10544 | WebAssembly.instantiate(typedArray, { |
| 10545 | 10545 | env: { |
| 10546 | | print: (result) => { console.log(`The result is ${result}`); } |
| 10547 | | }}).then(result => { |
| 10546 | print: (result) => { console.log(`The result is ${result}`); } |
| 10547 | }}).then(result => { |
| 10548 | 10548 | const add = result.instance.exports.add; |
| 10549 | 10549 | add(1, 2); |
| 10550 | 10550 | });{#end_syntax_block#} |