Skip to content

Commit

Permalink
v2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchellShibilski-Unkel committed Apr 20, 2024
1 parent c865f44 commit f592da8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/Munix.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include "PyMunix.c"
#include "window/window.h"


class Munix() {
Expand Down
4 changes: 2 additions & 2 deletions src/terminal/terminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ def run(self, cmd: str):
elif breakDown[0] in "help" or breakDown[0] in "-h":
print("Command Name\tFunction\tCommand\nr\tRead\tr [FILE]\nw\tWrite\tw [FILE]\nf\tFind\tf [FILE]\ncompile\tGCC Compiler\tcompile [FILE] [EXE NAME]\nprint\tEcho\tprint [MESSAGE]\nget\tInstaller\tget [-py *OPTIONAL] [NAME]\nupdate\tUpdater\tupdate [NAME]\nremove\tUninstaller\tremove [NAME]\ncompress\tCompressor\tcompress [FILE]\ndecompress\tDecompressor\tdecompress [FILE]\n")
else:
print("CMD ERROR (1) :: Command Does Not Exist\n")
os.system(f"{breakDown[0:]}")

def __count__(self, x: list):
count = 0
for x2 in x:
count += 1

return count
return count

0 comments on commit f592da8

Please sign in to comment.