Learning Perl

Learning PerlSearch this book
Previous: 3.8 ExercisesChapter 4Next: 4.2 The if/unless Statement
 

4. Control Structures

Contents:
Statement Blocks
The if/unless Statement
The while/until Statement
The for Statement
The foreach Statement
Exercises

4.1 Statement Blocks

A statement block is a sequence of statements, enclosed in matching curly braces. It looks like this:

{
    first_statement;
    second_statement;
    third_statement;
    ...
    last_statement;
}

Perl executes each statement in sequence, from the first to the last. (Later, I'll show you how to alter this execution sequence within a block, but this is good enough for now.)

Syntactically, a block of statements is accepted in place of any single statement, but the reverse is not true.

The final semicolon on the last statement is optional. Thus, you can speak Perl with a C-accent (semicolon present) or Pascal-accent (semicolon absent). To make it easier to add more statements later, we usually suggest omitting the semicolon only when the block is all on one line. Contrast these two if blocks for examples of the two styles:

    if ($ready) { $hungry++ }
    if ($tired) {
        $sleepy = ($hungry + 1) * 2;
}


Previous: 3.8 ExercisesLearning PerlNext: 4.2 The if/unless Statement
3.8 ExercisesBook Index4.2 The if/unless Statement