Skip to content

Commit

Permalink
Merge pull request #7 from akshay58538/divide
Browse files Browse the repository at this point in the history
Added divide function
  • Loading branch information
shahp00ja authored Jun 29, 2018
2 parents 0503b8f + 22deabf commit 96b4f0e
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 divide(a, b):
return a/b

0 comments on commit 96b4f0e

Please sign in to comment.