Help for this page

Select Code to Download


  1. or download this
    my @a = (1,2,3);
    for (@a) {
        if ($_ == 2) {
    ...
        }
    }
    print @a;