1 2 3 4 5
import { add } from "@david/add"; export function subtract(a: number, b: number): number { return add(a, -b); }