Help for this page

Select Code to Download


  1. or download this
    my @array = qw(blue red orange brown);  # No commas in qw()
    
    foreach (@array) {
       print("$_\n");
    }