Help for this page

Select Code to Download


  1. or download this
    $j = 1
    until ($j == 255) {
    ...
      $j++;
      ...
    }
    
  2. or download this
    $j = 1;
    while ($j < 256) {
      ...
    }
    
  3. or download this
    for my $j (1..256) {
    }