Add a welcome message

This commit is contained in:
Maxwell 2024-07-03 13:31:27 +10:00
parent ce9b2fd74b
commit c85a3d6793

View File

@ -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, "")