From ebec44cd6d5c2743d0a800826a1fa149045acb9d Mon Sep 17 00:00:00 2001 From: Bob The Burger <yofihzilif@sch.bme.hu> Date: Thu, 2 Apr 2020 09:05:46 -0700 Subject: [PATCH] added first task as excecuteable --- first_task.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 first_task.py diff --git a/first_task.py b/first_task.py new file mode 100644 index 0000000..64a8dba --- /dev/null +++ b/first_task.py @@ -0,0 +1,7 @@ +def Kiiro(): + print("gimme your name") + txt = input() + print(txt) + +if __name__ == "__main__": + Kiiro() -- GitLab