Help for this page

Select Code to Download


  1. or download this
    $ perl -le 'my $x = 0; print $x++'
    0
    $ perl -le 'my $x = 0; print ++$x'
    1
    
  2. or download this
    # Fill @array with ten random numbers.
    my $i = 0; 
    $array[$i++] = rand() while $i < 10;