Help for this page

Select Code to Download


  1. or download this
    for(1 .. 100) {         
        print if $_ < 50; 
    }
    
  2. or download this
    for(grep {$_ < 50} (1 .. 100)) {
        print;
    }
    
  3. or download this
    $array_ref = [1 .. 10000];
    for(@$array_ref) {
        print;
    }
    
  4. or download this
    $array_ref = [1 .. 10000];
    for($i=0; $_ = $array_ref->[$i] ;$i++) {
        print;
    }