mirror of
https://github.com/denoland/deno.git
synced 2024-12-18 21:35:31 -05:00
5 lines
127 B
JavaScript
5 lines
127 B
JavaScript
|
import { add, subtract } from "http://localhost:4545/wasm/math.wasm";
|
||
|
|
||
|
console.log(add(1, 2));
|
||
|
console.log(subtract(100, 50));
|