#! perl -wl use strict; my $x = 1; if($x) { print "yes"; } esle { print "no"; } #### Can't call method "esle" without a package or object reference at test.pl line 6. yes no