https://github.com/kubgus/terminal-blackjack
Play blackjack with the terminal.
https://github.com/kubgus/terminal-blackjack
blackjack cli gambling-game simulator terminal-game
Last synced: over 1 year ago
JSON representation
Play blackjack with the terminal.
- Host: GitHub
- URL: https://github.com/kubgus/terminal-blackjack
- Owner: kubgus
- License: mit
- Created: 2024-11-02T12:04:51.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-04T07:49:20.000Z (over 1 year ago)
- Last Synced: 2025-01-21T21:17:25.438Z (over 1 year ago)
- Topics: blackjack, cli, gambling-game, simulator, terminal-game
- Language: C++
- Homepage:
- Size: 92.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# terminal-blackjack
***Play blackjack with the terminal.***
This is a simple blackjack simulator for the terminal coded in
just one C++ file.
## Features
- Playable blackjack CLI game
- Input checking
- **Real simulated 52 card deck that makes card counting possible**
- *Advanded blackjack features:* insurance, double down, ~~split~~
### Roadmap
- [ ] Split hand
- [ ] Save and load game
## Install
This will install the executable in `/usr/local/bin`.
Use the `INSTALL.sh` script:
```bash
# Make sure to run this in the root of the repo
sh scripts/INSTALL.sh
```
Or install manually:
```bash
sudo g++ src/main.cpp -o /usr/local/bin/blackjack
```
## Build
This will build and run the executable.
```bash
g++ src/main.cpp -o blackjack
./blackjack
```
## Screenshots

## License
This project is licensed under the MIT License.
## Contributing
Please fork this repo and create a pull request.