summaryrefslogtreecommitdiff
path: root/tests/specs/npm/workspace_wildcards/main.ts
blob: a9a90ba126eb3d35ad79fe27b97e60bc620d9ee4 (plain)
1
2
3
4
5
import { add } from "npm:@denotest/a";
import { subtract } from "npm:@denotest/b";

console.log(add(1, 2));
console.log(add(4, 3));