Help for this page

Select Code to Download


  1. or download this
    for (@$tableau) {
       my $c = ($_->cards())[0]->label();
       ...
    }
    
  2. or download this
    for my $tabl (@$tableau) {
       my @deck = $tabl->cards();
       my $card = $deck[0];
       my $label = $card->label();
    }