|
|
if, else, elsif in Perl - Perl
|
Views : 109
|
|
Tagged in : Perl
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
if, else, elsif in Perl
Simplist form - if only
if (some expression) {
true statement;
}
Using else
if (some expression) {
true statement;
} else {
false statement;
}
Using elsif
if (some expression) {
true statement;
} elsif (another expression) {
another truestatement;
} else {
false statement;
}
|
|
By Geethalakshmi, On - 2010-09-17 |
|
|
|