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