From 5c0f79ccaa4ae242e63ac46ec148a2c26992cabb Mon Sep 17 00:00:00 2001 From: Macsigalla <142356840+Macsigalla@users.noreply.github.com> Date: Thu, 13 Nov 2025 16:07:04 +0100 Subject: [PATCH] Main testing code --- Day-01/02-hello-world.py | 1 + Day-02/test.py | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 Day-02/test.py diff --git a/Day-01/02-hello-world.py b/Day-01/02-hello-world.py index 7df869a1..cae95c45 100644 --- a/Day-01/02-hello-world.py +++ b/Day-01/02-hello-world.py @@ -1 +1,2 @@ print("Hello, World!") + diff --git a/Day-02/test.py b/Day-02/test.py new file mode 100644 index 00000000..e7179c9b --- /dev/null +++ b/Day-02/test.py @@ -0,0 +1,3 @@ +a = 3 +b = 6 +print(a + b)