Help for this page

Select Code to Download


  1. or download this
     my $country = $card->country;
        $country = $country eq 'gbr' ? '' : uc "[$country]" if $country;
    
  2. or download this
    my ($country) = map {$_ and $_ eq 'gbr' ? '' : uc "[$_]"} $card->count
    +ry;
    
  3. or download this
    my ($country) = map $_ && ($_ eq 'gbr' ? '' : uc "[$_]"), $card->count
    +ry;