NAME
Poker::Game::Badugi - Badugi
VERSION
Version 0.12
SYNOPSIS
use Poker::Game::Badugi;
my $game = Poker::Game::Badugi->new;
my $hero = $game->deal_hole(['As','2d','3c','4h']);
$game->evaluate($hero);
# optional draws:
$game->discard($hero, 'As');
$game->draw($hero, ['5s']);
DESCRIPTION
Badugi: four hole cards, triple draw, Badugi ranking (unique ranks and suits; aces low; fewer cards can still make a hand).