Help for this page

Select Code to Download


  1. or download this
    my $i=1; my $end= 2;
    while ($i++<$end) {
      $end++;
    }
    
  2. or download this
    y @a = (1);
    foreach (sort @a) { push @a, 1; }