From 0806afb10d37001ea202e7f0b123385aad76c1da Mon Sep 17 00:00:00 2001 From: jacklak-redstone Date: Sun, 23 Nov 2025 10:42:45 -0500 Subject: [PATCH 1/3] fix inline stuff --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7f7408f..9c61653 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ Small Python-OS made by Waffle. ## Running PyOS -1. Download and cd to the project in the terminal. -2. Run: python boot.py -3. Now you are ready! Run help to see all commands. +1. Download and `cd` to the project in the terminal. +2. Run: `python boot.py` +3. Now you are ready! Run `help` to see all commands. ## Contributing If you really really need, make a PR. From 50ea701b2bcb936e2fec9a720d3cf353e2e771aa Mon Sep 17 00:00:00 2001 From: Noah <176782468+jacklaktimeishere@users.noreply.github.com> Date: Sun, 23 Nov 2025 20:03:23 -0500 Subject: [PATCH 2/3] add echo command --- commands/echo.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 commands/echo.py diff --git a/commands/echo.py b/commands/echo.py new file mode 100644 index 0000000..c85e849 --- /dev/null +++ b/commands/echo.py @@ -0,0 +1,6 @@ +import typing + +command_help = 'Echo the input arguments to the output. Usage: echo [args...]' + +def run(args: typing.Any) -> None: + print(args) From 6918fd33652bde36baf7db3be52c4e413443bcab Mon Sep 17 00:00:00 2001 From: Noah <176782468+jacklaktimeishere@users.noreply.github.com> Date: Sun, 23 Nov 2025 20:06:04 -0500 Subject: [PATCH 3/3] fixed echo --- commands/echo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/echo.py b/commands/echo.py index c85e849..3f855a2 100644 --- a/commands/echo.py +++ b/commands/echo.py @@ -3,4 +3,4 @@ command_help = 'Echo the input arguments to the output. Usage: echo [args...]' def run(args: typing.Any) -> None: - print(args) + print(' '.join(args))