- or download this
{
open my $fh, "<", "some_file" or last;
}
- or download this
if (/VALID/)
{{ # First bracket is for the if, second is for a loop-like block
open my $fh, "<", "some_file" or last;
}}
- or download this
while (<>)
{
if (/INVALID/)
...
last;
}
}