summaryrefslogtreecommitdiff
path: root/tests/specs/workspaces/patch/add/mod.ts
blob: 97a779a44e398331ae16a1d4cd5bfe24edab172b (plain)
1
2
3
4
export function add(a: number, b: number): number {
  console.log("adding", a, "and", b);
  return a + b;
}