Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

loop over elements of list with foreach

  • foreach

  • for

  • list

  • foreach ITEM (LIST) {BLOCK}

  • my - in the foreach loop

use strict;
use warnings;

foreach my $color ("Blue", "Yellow", "Brown", "White") {
    print "$color\n";
}

Blue
Yellow
Brown
White