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