- or download this
use Test::More;
...
return; # Unreachable.
}
}
- or download this
sub match {
local $_ = shift;
...
|| m/ ^[^()]*()$ /x; # No parens (no capture).
return $1 // ();
}
- or download this
sub match {
shift =~ m/
...
/x;
return $+{C} // ();
}
- or download this
sub match {
shift =~ m/
...
/x;
return $^N // ();
}
- or download this
sub match {
shift =~ m/
...
/x;
return $1 // ();
}
- or download this
sub match {
shift =~ m/
...
/x;
return $1 // ();
}