From 5ce06fdc773f610ab76bc4afee1b77765a34a6fa Mon Sep 17 00:00:00 2001 From: Benjamin Hackl Date: Fri, 11 Oct 2024 14:49:02 +0200 Subject: [PATCH] addition --- math.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 math.py diff --git a/math.py b/math.py new file mode 100644 index 0000000..32963f4 --- /dev/null +++ b/math.py @@ -0,0 +1,3 @@ +def addition(a: float, b: float) -> str: + return a + b +