in reply to Re^2: Pick a single item from a sub's return list
in thread [Solved] Pick a single item from a sub's return list
My REPL accepts multiple input lines by the expedient of accumulating them until a line is ended with a double semicolon.
An unedited C&P from my REPL:
[0] Perl> sub giveList { return 1 .. 10; } print +( giveList() )[ 2 ]; ;; 3 [0] Perl>
|
|---|