Skip to content

Instantly share code, notes, and snippets.

@Gsantomaggio
Last active December 6, 2021 19:29
Show Gist options
  • Save Gsantomaggio/ba1506fbe5c6e985a82689178c666a23 to your computer and use it in GitHub Desktop.
Save Gsantomaggio/ba1506fbe5c6e985a82689178c666a23 to your computer and use it in GitHub Desktop.
Calculator Project
TODO:
- Move it to github
- Create unit tests
- Create a CI to execute the tests with github action
@Gsantomaggio
Copy link
Author

Gsantomaggio commented Dec 6, 2021

Description

This is an amazing Calculator

We really need it

How to use it...

 td_sum(4,6)

@Gsantomaggio
Copy link
Author

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