Help for this page

Select Code to Download


  1. or download this
     my $item = $self->grid($x, $y) and push @{$self->{'select'}}, $item
    
  2. or download this
     my $item;
     $item = $self->grid($x, $y) and push @{$self->{'select'}}, $item
    
  3. or download this
     if (my $item = $self->grid($x, $y)) {
       push @{$self->{'select'}}, $item
     }