Last active
December 6, 2021 19:29
-
-
Save Gsantomaggio/ba1506fbe5c6e985a82689178c666a23 to your computer and use it in GitHub Desktop.
Calculator Project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TODO: | |
- Move it to github | |
- Create unit tests | |
- Create a CI to execute the tests with github action |
def td_sum(x, y):
return x + y
def td_divide(x, y):
return x / y
def td_multiply(x, y):
return x * y
def td_sub(x, y):
return x - y
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
This is an amazing Calculator
We really need it
How to use it...