summaryrefslogtreecommitdiff
path: root/tests/specs/jsr/worker/main.ts
blob: ccab029e6d90597c9f6ac3fca4a164b3cea5d810 (plain)
1
2
3
4
5
import { addAsync } from "jsr:@denotest/worker";

addAsync(1, 2).then((result) => {
  console.log(result);
});