diff --git a/__pycache__/calculator.cpython-312.pyc b/__pycache__/calculator.cpython-312.pyc new file mode 100644 index 0000000..f5e8aea Binary files /dev/null and b/__pycache__/calculator.cpython-312.pyc differ diff --git a/__pycache__/test_calculator.cpython-312-pytest-7.4.4.pyc b/__pycache__/test_calculator.cpython-312-pytest-7.4.4.pyc new file mode 100644 index 0000000..c967c49 Binary files /dev/null and b/__pycache__/test_calculator.cpython-312-pytest-7.4.4.pyc differ diff --git a/calculator.py b/calculator.py new file mode 100644 index 0000000..84be58c --- /dev/null +++ b/calculator.py @@ -0,0 +1,21 @@ +def multiply(a,b): + return a * b + +def add(a,b): + return a+b + +def subtract(a,b): + return a-b + +def divide(a,b): + return a/b + +def square(a): + return a**2 + +def cube(a): + return a**3 + +print("I'm going use the calculator functions to multiply 5 and 6") +x = multiply(5,6) +print(x) \ No newline at end of file