From 145f96f940355e4e923b52c78ceb7d8ae4c9625c Mon Sep 17 00:00:00 2001 From: m3t4l Date: Wed, 24 Dec 2025 17:37:37 -0300 Subject: [PATCH] Alter README --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 492eccb..6c020c7 100644 --- a/README.md +++ b/README.md @@ -30,13 +30,15 @@ Running the interpreter To run the interpreter on Linux and MacOS: ```bash -./build/python_interpreter path/to/script.py +cd build +./python_interpreter path/to/script.py ``` To run the interpreter on Windows: ```bash -./build/python_interpreter.exe path/to/script.py +cd build +python_interpreter.exe path/to/script.py ``` Example script (example.py) @@ -44,7 +46,7 @@ Example script (example.py) ``` # example.py x = 0 -for i in range(1, 5): +for i in range(5): print(i) print("End of loop") @@ -52,6 +54,7 @@ print("End of loop") Expected output (implementation-dependent): ``` +0 1 2 3