mirror of
https://github.com/denoland/deno.git
synced 2024-12-12 02:27:46 -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));
|