From c85a3d67935411528a58a400dcd5150d631a2d4d Mon Sep 17 00:00:00 2001 From: max Date: Wed, 3 Jul 2024 13:31:27 +1000 Subject: [PATCH] Add a welcome message --- main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.py b/main.py index 8ee5442..5cab815 100755 --- a/main.py +++ b/main.py @@ -6,6 +6,9 @@ import re initDirectory = os.path.dirname(os.path.realpath(__file__)) currentDirectory = initDirectory version = "0.0.1" +user = os.getlogin() + +print("Welcome to Mash, " + user + "! Mash is currently on version " + version) def grabArgument(fullCommand, commandRan): fullCommand.replace(commandRan, "")