blackjack/src/lib.rs
Nick Pegg 69a4239f90 Refactor the game flow and support splits
Behaves more like a client/server, rather than just taking a decision
function. The CLI logic is more complex now, but the game is more
flexible and and support splits (basically branching the hand off)
2025-07-09 12:30:37 -07:00

4 lines
57 B
Rust

pub mod card;
pub mod error;
pub mod game;
pub mod hand;