in reply to Debating With Friends
use strict; use warnings; my $x = 1; my $y = 2; if($x == $y) { print "equal\n"; } else { print "not equal\n"; } [download]