summaryrefslogtreecommitdiff
path: root/tests/specs/compile/workspace/subtract/mod.ts
blob: 3d8ba39af3e1874060b3393301a8d4ab2449254b (plain)
1
2
3
4
5
import { add } from "@david/add";

export function subtract(a: number, b: number): number {
  return add(a, -b);
}