From efa0686d279b8a237c06c23e7309b459f4e25025 Mon Sep 17 00:00:00 2001 From: Benjamin Adovasio Date: Fri, 16 Jan 2026 09:57:25 -0500 Subject: [PATCH] hello_world --- hello_world.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hello_world.py diff --git a/hello_world.py b/hello_world.py new file mode 100644 index 0000000..73b91d8 --- /dev/null +++ b/hello_world.py @@ -0,0 +1,8 @@ +print("Hello World") + +#Function that takes in a list of numbers and returns the sum of all numbers +def numSum(numList): + sum = 0 + for num in numList: + sum += num + return sum \ No newline at end of file