mirror of
https://github.com/denoland/deno.git
synced 2025-02-20 20:33:42 -05:00
6 lines
117 B
JavaScript
6 lines
117 B
JavaScript
![]() |
// @ts-check
|
||
|
const { add, subtract } = require("./math.wasm");
|
||
|
|
||
|
console.log(add(1, 2));
|
||
|
console.log(subtract(9, 3));
|