Skip to content

Commit 85a95a8

Browse files
committed
A little more help
1 parent c860ebf commit 85a95a8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

builtin_apps/PyDOS/code.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def PyDOS():
8181
_VER = "1.52-fruitjam"
8282
prmpVals = ['>','(',')','&','|','\x1b','\b','<','=',' ',_VER,'\n','$','']
8383

84-
print("Starting Py-DOS...")
84+
print("Starting Py-DOS... Type 'help' for help.")
8585
envVars["PATH"] = f'{sep};{sep}apps{sep}PyDOS;{sep}apps{sep}PyBasic'
8686
envVars["PROMPT"] = "$P$G"
8787
envVars["LIB"] = ";".join(path[1:])
@@ -683,6 +683,8 @@ def readBATFile(BATfile):
683683
print("Operating System Commands: EXIT, VER, MEM, DATE [mm-dd-yy], TIME [hh:mm:ss]")
684684
print("Batch Commands: GOTO, IF, ECHO, PAUSE")
685685
print("Command to execute a single Python command: PEXEC")
686+
print("Run a Python program: [path]program[.py]")
687+
print("Run a DOS batch file: [path]program[.bat]")
686688
elif cmd == "DIR":
687689
if len(args) == 1:
688690
prDir(os.getcwd()[(2 if os.getcwd()[1:2]==":" else 0):],swBits)

0 commit comments

Comments
 (0)