Files
CI-CD-TestingRepo/calculator.py
T
ksan 5de3e18464
CI / test (push) Failing after 5s
testing breakw
2026-05-31 13:29:26 +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