export function add(a: number, b: number): number { console.log("adding", a, "and", b); return a + b; }