Help for this page

Select Code to Download


  1. or download this
    my $list = 'some default item';
    my @list = (1, 2, 3, 4);
    foreach (@list) {
        print "$list\n";
    }