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