|
|
While, Until in Perl - Perl
|
Views : 115
|
|
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.
|
While, Until in Perl
The while loop is used to keep performing a loop while an expression is true.
while (true expression) {
statement 1;
statement 2;
}
The until loop is used to keep perfoming a loop while an expression is false.
until (false expression) {
statement 1;
statement 2;
}
|
|
By Geethalakshmi, On - 2010-09-17 |
|
|
|