Help for this page
use strict; use warnings; ... print "It's 10\n" if $notAnInt == 10; print "It's 0\n" if $notAnInt == 0; print "It's #10\n" if $notAnInt eq '#10';
Argument "#10" isn't numeric in numeric eq (==) at noname1.pl line 6. It's 0 It's #10