Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    
  2. or download this
        foreach(@sof_i)
            {
    ...
       ##This just randomly deletes the first elements of the array for ho
    +wever many times you did $sof_to_delete++
       for ($i=0;$sof_to_delete>0;$sof_to_delete--)
            {shift(@sof_i);}
    
  3. or download this
    
    foreach(@sof_i)
    ...
        $sof_to_delete++;
    }
    shift @sof_i for (0..$sof_to_delete)