The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
1234567891011121314 # LOADBEGIN {print "1..3\n";}use Regexp::Common qw /no_defaults/;print "ok 1\n";print defined &Regexp::Common::URL::pattern ? "not ok 2\n" : "ok 2\n";# Make sure $; isn't modified.print $; eq "\034" ? "ok 3" : "not ok 3";print ' # $; eq "\034"', "\n";__END__
# LOAD
BEGIN {
print
"1..3\n"
;}
use
Regexp::Common
qw /no_defaults/;
"ok 1\n"
;
defined
&Regexp::Common::URL::pattern
?
"not ok 2\n"
:
"ok 2\n"
# Make sure $; isn't modified.
$; eq
"\034"
"ok 3"
"not ok 3"
' # $; eq "\034"'
,
"\n"
__END__