Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Trouble getting size of list returned from sub

by 2teez (Vicar)
on Nov 26, 2012 at 09:04 UTC ( [id://1005596]=note: print w/replies, xml ) Need Help??


in reply to Trouble getting size of list returned from sub

this can also work:

my $n = () = bad(); print $n; #print 4 sub bad { return qw/foo bar baz timon/; }

If you tell me, I'll forget.
If you show me, I'll remember.
if you involve me, I'll understand.
--- Author unknown to me

Replies are listed 'Best First'.
Re^2: Trouble getting size of list returned from sub
by TomDLux (Vicar) on Nov 30, 2012 at 02:31 UTC

    You can also fold the variable into the same line as the print:

    say ( my $mp =()= bad() );

    But I wouldn't say that's an improvement. In fact, I would tuck all this away into a routine, to hide details and leave only the high-level purpose.

    To learn more about this ( the goatse operator ) and other fun, little-known operators, check out secret perl operators

    As Occam said: Entia non sunt multiplicanda praeter necessitatem.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (3)
As of 2024-04-19 23:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found