2020-06-22 11:27:25 -04:00
|
|
|
## WebAssembly support
|
2020-05-06 18:21:13 -04:00
|
|
|
|
2020-12-28 16:01:32 -05:00
|
|
|
Deno can execute [WebAssembly](https://webassembly.org/) modules with the same
|
|
|
|
interfaces that
|
|
|
|
[browsers provide](https://developer.mozilla.org/en-US/docs/WebAssembly).
|
2020-05-06 18:21:13 -04:00
|
|
|
|
2020-07-14 15:24:17 -04:00
|
|
|
<!-- dprint-ignore -->
|
|
|
|
|
2020-09-26 15:48:32 -04:00
|
|
|
```ts
|
2020-05-06 18:21:13 -04:00
|
|
|
const wasmCode = new Uint8Array([
|
|
|
|
0, 97, 115, 109, 1, 0, 0, 0, 1, 133, 128, 128, 128, 0, 1, 96, 0, 1, 127,
|
|
|
|
3, 130, 128, 128, 128, 0, 1, 0, 4, 132, 128, 128, 128, 0, 1, 112, 0, 0,
|
|
|
|
5, 131, 128, 128, 128, 0, 1, 0, 1, 6, 129, 128, 128, 128, 0, 0, 7, 145,
|
|
|
|
128, 128, 128, 0, 2, 6, 109, 101, 109, 111, 114, 121, 2, 0, 4, 109, 97,
|
|
|
|
105, 110, 0, 0, 10, 138, 128, 128, 128, 0, 1, 132, 128, 128, 128, 0, 0,
|
|
|
|
65, 42, 11
|
|
|
|
]);
|
|
|
|
const wasmModule = new WebAssembly.Module(wasmCode);
|
|
|
|
const wasmInstance = new WebAssembly.Instance(wasmModule);
|
2020-09-26 15:48:32 -04:00
|
|
|
const main = wasmInstance.exports.main as CallableFunction
|
2020-10-19 08:43:58 -04:00
|
|
|
console.log(main().toString());
|
2020-05-06 18:21:13 -04:00
|
|
|
```
|