in reply to Re^4: Can't find any documentation on < a b c > syntax for lists
in thread Can't find any documentation on < a b c > syntax for lists

Anything? Except this:
perl -MO=Deparse,-p -e 'print "$_\n" for <<>>'
print("$_\n") foreach (<<>>);

Perl waits for input:

echo fubar | perl -e 'print "$_\n" for <<>>'
fubar

Replies are listed 'Best First'.
Re^6: Can't find any documentation on < a b c > syntax for lists
by ikegami (Patriarch) on Feb 14, 2023 at 18:22 UTC

    Different operator. I also didn't cover <<EOF eventually followed by >, or $x<123 eventually followed by a >, etc.