Help for this page
use 5.010; use strict; ... if (@a ~~ /abc/ ) { say '/abc/'; } if (@a ~~ qr/abc/) { say 'qr/abc/'; }
qr/abc/ -- /abc/ qr/abc/