in reply to Re: Why 'die LIST'?
in thread Why 'die LIST'?

Hmm, that would be a bug, then, since the documented behavior is "they act like die() or warn()...".

Hmm, and it works for me:

perl -MCarp -e "carp ('hello', 'world', qq(\n))";
Looking at the code, it says, my $error = join '', @_; so it certainly is intending to work that way.

—John