There was an error while loading. Please reload this page.
1 parent e9f513d commit a29b387Copy full SHA for a29b387
07-blackjack/README.md
@@ -1,10 +1,15 @@
1
# Blackjack
2
3
-**Install and compile game using GCC C++ compiler (g++)**
4
-
+## To use the code
+* Open Terminal and change the current working directory to the location where you want the cloned directory to be made.
5
+* Download the repository using the [instruction](https://help.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository).
6
+* In the command line go to the directory with the files downloaded:
7
```bash
-git clone https://github.com/kgoncharova/cpp-games.git
8
cd cpp-games/07-blackjack
9
+```
10
+
11
+**How to compile game using GCC C++ compiler (g++)**
12
+```bash
13
g++ -o game -I ./lib *.cpp lib/*.cpp
14
./game
15
```
0 commit comments