Help for this page

Select Code to Download


  1. or download this
        while (<>) {
            $obj.threshold += $_
                unless $obj.threshold > $min;
        }
    
  2. or download this
        my $thresh := $obj.threshold;
        while (<>) {
            $thresh += $_
                unless $thresh > $min;
        }