From 59dd8f1f36a5c5256c9ad471c7b5d702e33608ee Mon Sep 17 00:00:00 2001 From: Arkaprabha Chakraborty Date: Sat, 12 Feb 2022 15:19:48 +0530 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8f6feac..a0e5758 100755 --- a/README.md +++ b/README.md @@ -17,16 +17,16 @@ Prints a spinning ASCII torus (mathematical name for a doughnut-shaped object) o ## How to run the Python version -* Type `python main.py` in the shell to run the Python version +* Type `python doughnut.py` in the shell to run the Python version ## How to compile the C version -* Type `gcc -o main.exe main.c -lm` in the shell to compile using GCC -* Type `clang -o main.exe main.c -lm` in the shell to compile using Clang +* Type `gcc -o doughnut.exe doughnut.c -lm` in the shell to compile using GCC +* Type `clang -o doughnut.exe doughnut.c -lm` in the shell to compile using Clang ## How to run the C version -* Type `.\main.exe` in the shell to run the program +* Type `.\doughnut.exe` in the shell to run the program # For Linux @@ -47,7 +47,7 @@ Prints a spinning ASCII torus (mathematical name for a doughnut-shaped object) o ## How to clean up the executable -* `make clean` to clean after execution +* `make clean` to clean up after execution # Updates