From d3c12bc6f84270b6618d5ed546e9e57eca8ff018 Mon Sep 17 00:00:00 2001 From: Dirk Baeumer Date: Mon, 25 Mar 2024 15:19:48 +0100 Subject: [PATCH] Some test changes --- app.py | 1 + hello.py | 1 + 2 files changed, 2 insertions(+) diff --git a/app.py b/app.py index 0ae4594..89b2b7e 100644 --- a/app.py +++ b/app.py @@ -1,3 +1,4 @@ import hello hello.say_hello() +hello.say_hello() diff --git a/hello.py b/hello.py index 3beba74..ab22b46 100644 --- a/hello.py +++ b/hello.py @@ -1,2 +1,3 @@ def say_hello(): + print( 'Hello, World!' ) print( 'Hello, World!' ) \ No newline at end of file