Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Pick a single item from a sub's return list

by BrowserUk (Patriarch)
on Oct 31, 2015 at 11:25 UTC ( [id://1146568]=note: print w/replies, xml ) Need Help??


in reply to [Solved] Pick a single item from a sub's return list

Indexing a list needs parens:

sub giveList{ 1 .. 10 };; print +( giveList() )[ 2 ];; 3

Note: the unary + is to avoid the intensely annoying: print (...) interpreted as function ...


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority". I knew I was on the right track :)
In the absence of evidence, opinion is indistinguishable from prejudice.

Replies are listed 'Best First'.
Re^2: Pick a single item from a sub's return list
by roho (Bishop) on Oct 31, 2015 at 12:41 UTC
    A bit OT, but I have always wondered why you end statements with 2 semi-colons. I know there's nothing syntactically wrong with it.

    "Its not how hard you work, its how much you get done."

      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>

      With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
      Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
      "Science is about questioning the status quo. Questioning authority". I knew I was on the right track :)
      In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1146568]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-19 21:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found