in reply to Re^2: Turn matching against undef to be deadly
in thread Turn matching against undef to be deadly
use strict; use warnings; use Carp; use warnings FATAL => 'uninitialized'; printf "matched: %s\n" , ( 'x' =~ undef() ? 'yes' : 'no' ) ; print "end\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Turn matching against undef to be deadly
by AnomalousMonk (Archbishop) on Sep 26, 2013 at 16:00 UTC |