diff --git a/hello.py b/hello.py index 126059b..4c40912 100644 --- a/hello.py +++ b/hello.py @@ -1,7 +1,7 @@ import time def Hello(): for i in range(5): - print("Hello World!") + print("Hey there!") time.sleep(2) Hello()