From f33e78fe9ba824208c3a2596235f829258705d85 Mon Sep 17 00:00:00 2001 From: manhair Date: Thu, 19 Sep 2019 19:47:05 +0900 Subject: [PATCH] add world.py --- world.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 world.py diff --git a/world.py b/world.py new file mode 100644 index 0000000..ffcd19f --- /dev/null +++ b/world.py @@ -0,0 +1,10 @@ +# world.py file +import time +def hello_world(): + print("hello world") +def bye_world(): + time.sleep(2) + print("bye world") +if __name__ == "__main__": + hello_world() + bye_world()