Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/milesrack/blackjack-cli
Play a game of Blackjack in your terminal.
https://github.com/milesrack/blackjack-cli
blackjack blackjack-cli blackjack-game blackjack-simulator c c-programming casino casino-games gambling gambling-game
Last synced: 4 days ago
JSON representation
Play a game of Blackjack in your terminal.
- Host: GitHub
- URL: https://github.com/milesrack/blackjack-cli
- Owner: milesrack
- License: gpl-3.0
- Created: 2023-11-23T04:03:37.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2023-12-11T23:30:43.000Z (11 months ago)
- Last Synced: 2023-12-12T00:56:36.067Z (11 months ago)
- Topics: blackjack, blackjack-cli, blackjack-game, blackjack-simulator, c, c-programming, casino, casino-games, gambling, gambling-game
- Language: C
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
README
# Blackjack CLI
Play a game of Blackjack in your terminal.## Compile
```
gcc blackjack.c -o blackjack
```## Run
```
$ ./blackjack
Place your bet (bank: $10000.00): 200
Dealer (?)
+---------+ +---------+
| ? | | 9 |
| | | |
| ? | | ♢ |
| | | |
| ? | | 9 |
+---------+ +---------+
Player (14)
+---------+ +---------+
| K | | 4 |
| | | |
| ♢ | | ♠ |
| | | |
| K | | 4 |
+---------+ +---------+
Would you like to [h]it or [s]tand?
```