From e554c457cb54cfc78b8ee4f954f569a0f8048b19 Mon Sep 17 00:00:00 2001 From: Wlad <9556979+gosticks@users.noreply.github.com> Date: Fri, 5 Feb 2021 12:58:29 +0100 Subject: [PATCH] create main for easier execution --- main.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..0107284 --- /dev/null +++ b/main.py @@ -0,0 +1,14 @@ + + +ascii_logo = """\ + /$$$$$$ /$$ /$$ /$$$$$$$ /$$ /$$ /$$ + /$$__ $$| $$$ /$$$| $$__ $$| $$ | $$ /$$/ +| $$ \__/| $$$$ /$$$$| $$ \ $$| $$ \ $$ /$$/ +| $$$$$$ | $$ $$/$$ $$| $$$$$$$/| $$ \ $$$$/ + \____ $$| $$ $$$| $$| $$____/ | $$ \ $$/ + /$$ \ $$| $$\ $ | $$| $$ | $$ | $$ +| $$$$$$/| $$ \/ | $$| $$ | $$$$$$$$| $$ + \______/ |__/ |__/|__/ |________/|__/ + +""" +print(ascii_logo)