Skip to content

Commit

Permalink
Merge pull request #596 from AnthonyMichaelTDM/rust-port-blackjack
Browse files Browse the repository at this point in the history
Rust port of 10_Blackjack
  • Loading branch information
coding-horror committed Mar 3, 2022
2 parents c15e42c + 0cf0dd2 commit cff3397
Show file tree
Hide file tree
Showing 3 changed files with 646 additions and 0 deletions.
9 changes: 9 additions & 0 deletions 10_Blackjack/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[package]
name = "rust"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rand = "0.8.5"
3 changes: 3 additions & 0 deletions 10_Blackjack/rust/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Original source downloaded [from Vintage Basic](http://www.vintage-basic.net/games.html)

Conversion to [Rust](https://www.rust-lang.org/) by Anthony Rubick [AnthonyMichaelTDM](https://github.com/AnthonyMichaelTDM)
Loading

0 comments on commit cff3397

Please sign in to comment.