Help for this page

Select Code to Download


  1. or download this
    while(<FILE>) { do stuff }
    # rather than
    ...
        for (@$ref) { do stuff }
      return $ref;
    }
    
  2. or download this
    # this is short but memory intensive
    do_stuff() if grep { /something/ } @array
    ...
        do_stuff();
      last;
    }