in reply to Re^3: and multiple statements
in thread and multiple statements
is perfectly valid code. There's no requirement that that is to be written asif (!open my $fh, "<", "filename") { warn "Whatever"; return; }
open my $fh, "<", "filename" or do {warn "Whatever"; return;};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: and multiple statements
by ikegami (Patriarch) on Jun 06, 2010 at 23:03 UTC |