Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Perl: last evaluated value as a returned value for a subroutine. See inside

by moritz (Cardinal)
on Feb 21, 2013 at 17:18 UTC ( [id://1019988]=note: print w/replies, xml ) Need Help??


in reply to Perl: last evaluated value as a returned value for a subroutine. See inside

My question is: are there any conditions when Perl would NOT print "some string" in last two lines of code?

I have trouble making sense of this question.

If you change the code, it might do something differently, depending on how you change it. If you don't change the code, it'll do the same thing each time you execute it.

If the fact that $R is returned surprises you, it might help to know that

unless ($A) { $b }

is actually compiled the same as

$a or $b

(and likewise if ($a) { $b } is compiled the same as $a and $b)

which is why branching constructs as the last statement return the value of the conditional.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (8)
As of 2024-04-18 07:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found