dealrs 0.2.0

Toolkit for card games like poker, providing card, deck, hand, and exploration utilities.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Simple program to play Texas Holdem in a command-line interface (CLI) like your terminal, uses the [dealrs::texas::cli] module.

use clap::Parser;

use dealrs::texas::cli;

/// Entrypoint for the Texas Holdem CLI program, which just parses and runs the CLI from the provided arguments.
fn main() -> Result<(), Box<dyn std::error::Error>> {
    cli::Args::parse().run()
}