Hi monks,
I usually use the 'or' operator and zero value while assigning values to scalar, when i assign scalar varaible to scalar variable. (For Eg. my $var = $var1 || 0). So, if $var1 is empty the 0 will be assign to $var variable. In this subroutine also i did the same. But, in this case if i print "$price" the output i am getting is 8. Anyone please guide me. I can return 0,0 from the subroutine. By mistake i did 'or' opearator and assign zero value. I just wanted to know how the values assigning.
#!/usr/local/bin/perl
use strict;
use warnings;
my ($price, $floor) = &get_price_floor() || 0;
print $price;
sub get_price_floor {
return (10, 8);
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.