Is it possible to use a single line foreach loop in Perl?
$hash{$thing}++ foreach my $thing (@things);
I know this is possible with many other commands such as,
die "Invalid file!\n" if (open($Handle, "file.txt"));
I know that open statement maybe broken :)
iftounlessor use the more common idiom (and 3arg open and lexical handle)open my $handle, '<', 'file.txt' or die "Error opening file: $!";of course use'>'if you want to open the file for writing rather than reading. – Joel Berger Aug 17 '11 at 14:22