tokuhirom's Blog

`!~~` operator in Perl5

Perl5 can parse 1 !~~ 3. But it's not a inverted-smart-match operator!

% perl -MO=Deparse -e '1 !~~ 3'
not 1 =~ /18446744073709551612/;
-e syntax OK

OMG!!!!!!