Skip to content

Commit 7341f0b

Browse files
Udated README.md
1 parent f2fbe60 commit 7341f0b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ It demonstrates the use of STL containers (`vector`, `deque`, `list`, `set`, `ma
1717
You need a C++ compiler (like g++ from MinGW or GCC):
1818

1919
```sh
20-
g++ -o onlineStore stlStore.cpp
20+
g++ -o stlStore stlStore.cpp
2121
```
2222

2323
For a statically linked Windows executable (no DLLs needed):
2424

2525
```sh
26-
g++ -static -o onlineStore.exe stlStore.cpp
26+
g++ -static -o stlStore.exe stlStore.cpp
2727
```
2828

2929
## How to Run
3030

3131
```sh
32-
./onlineStore
32+
./stlStore
3333
```
3434
or on Windows:
3535
```sh
36-
onlineStore.exe
36+
stlStore.exe
3737
```
3838

3939
## Usage

0 commit comments

Comments
 (0)