Help for this page

Select Code to Download


  1. or download this
    $i=0;
    if ($i++) {
        print 'first=' , $i, ', ';
    ...
    if ($i++) {
        print 'beyond=' , $i, ', ';
    }
    
  2. or download this
    $i=0;
    if ($i++) {
        print 'first=' , $i - 1, ', ';
    ...
    if ($i++) {
        print 'beyond=' , $i - 1, ', ';
    }
    
  3. or download this
    $i=0;
    print 'first=' , $i, ', ' if $i;
    ...
    $i++;
    print 'beyond=', $i if $i;
    $i++;
    
  4. or download this
    my $i=0;
    outputter('first', $i++);
    ...
        my ($txt, $i) = @_;
        print "$txt=$i, " if $i;
    }