more stuff

This commit is contained in:
Benjamin Hackl 2024-10-11 14:52:27 +02:00
parent 231c836d2d
commit 2a413136dd

View file

@ -3,3 +3,10 @@ def addition(a: float, b: float) -> float:
def subtraction(a: float, b: float) -> float:
return a - b
def multiplication(a: float, b: float) -> float:
return a * b
def division(a: float, b: float) -> float:
return a / b