first commit
CI / test (push) Successful in 44s

This commit is contained in:
2026-05-31 13:27:47 +02:00
commit 4ee1c810c1
6 changed files with 404 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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