in reply to Re^3: 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

From this StackOverflow answer,

Replies are listed 'Best First'.
Re^5: Can't find any documentation on < a b c > syntax for lists
by Anonymous Monk on Feb 14, 2023 at 16:03 UTC
      <...> (anything else) means glob(qq<...>)
    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

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