diff --git a/hello_world.py b/hello_world.py index ad35e5a..b68224b 100644 --- a/hello_world.py +++ b/hello_world.py @@ -1 +1,6 @@ -print("Hello World") +import time +def helloworldfunc(): + for i in range(1): + print("My forked version of helloworld") + time.sleep(0.5) +helloworldfunc()