Skip to content

Commit

Permalink
added multiply
Browse files Browse the repository at this point in the history
  • Loading branch information
shahp00ja committed Jun 29, 2018
1 parent 0503b8f commit d25a3b2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@ def add(a, b):
return a+b

def subtract(a, b):
return a-b
return a-b

def multiply(a, b):
return a*b

0 comments on commit d25a3b2

Please sign in to comment.