Files
CI-CD-TestingRepo/calculator.py
T
ksan 2224ab723d
CI / test (push) Successful in 6s
fixing braking change
2026-05-31 13:30:22 +02:00

15 lines
210 B
Python

def add(a, b):
return a + b
def subtract(a, b):
return a - b
def multiply(a, b):
return a * b
def divide(a, b):
if b == 0:
raise ValueError("Cannot divide by zero")
return a / b