in reply to 'or' vs '', '&&' vs 'and'

For readability, I prefer the following:
open (THEFILE, ">$file") or die "Could not create $file - $!\n";
The parens are not needed, but I think it helps to keep things clean. Readable code is always helpful!!

perl -e 'print reverse qw/o b n a e s/;'