From 9673fc820e401e244770d405c6ce83ee9d0977c7 Mon Sep 17 00:00:00 2001 From: Erik Heeren Date: Tue, 3 Oct 2023 10:06:35 +0200 Subject: [PATCH] Multiplication! --- math.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 math.py diff --git a/math.py b/math.py new file mode 100644 index 0000000..3cf7e16 --- /dev/null +++ b/math.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +def multiply(first, second): + result = first * second + return result + +if __name__ == '__main__': + multiply(8, 9)