最佳答案
So I understand that perl has much unusual syntax, but I came across a code snippet at work that other day that has left me confused. Could someone please explain to me what it means:
<<'m'=~m>>
print $a unless $b;
return;
m
;
It looks like HEREDOC syntax, but not in any form I've ever seen.