in reply to Debating With Friends

The bottom line is this: such shortcuts benefit no one.
use strict; use warnings; my $x = 1; my $y = 2; if($x == $y) { print "equal\n"; } else { print "not equal\n"; }