Skip to content

Commit

Permalink
feat: multiplication again (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwilson1024 committed May 5, 2020
1 parent c390b5b commit 8ea2399
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ export function subtract(a: number, b: number): number {
return a - b;
}

export function multiply(a: number, b: number): number {
return a * b;
export function multiply(x: number, y: number): number {
return x * y;
}

0 comments on commit 8ea2399

Please sign in to comment.