attempt to fix things

This commit is contained in:
JaydenMW 2021-03-03 12:41:03 -06:00
parent 34e3832edf
commit 3d8751240d
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
import sys
def echo():
print(' '.join(sys.argv[1:]))
def echo(txt):
print(txt.join(sys.argv[1:]))

View File

@ -64,8 +64,8 @@ def main():
mkdir()
elif inp == "system":
system()
elif inp == "echo ":
echo()
elif inp == "echo":
echo(txt)
elif inp == "oscmd ":
oscmd()
else: