in reply to Re^2: 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
perl -MO=Deparse,-p -e 'print "$_\n" for < a >;'
use File::Glob ();
print("$_\n") foreach (glob(' a '));
perl -MO=Deparse,-p -e 'print "$_\n" for <a>;'
print("$_\n") foreach (readline(a));
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Can't find any documentation on < a b c > syntax for lists
by Athanasius (Archbishop) on Feb 14, 2023 at 07:08 UTC | |
|
Re^4: Can't find any documentation on < a b c > syntax for lists
by LanX (Saint) on Feb 14, 2023 at 14:33 UTC | |
|
Re^4: Can't find any documentation on < a b c > syntax for lists
by ikegami (Patriarch) on Feb 14, 2023 at 15:38 UTC | |
by Anonymous Monk on Feb 14, 2023 at 16:03 UTC | |
by ikegami (Patriarch) on Feb 14, 2023 at 18:22 UTC |