Help for this page

Select Code to Download


  1. or download this
    print $|++ for (0..9);  print"   post ++\n";
    print $|-- for (0..9);  print"   post --\n";
    print ++$| for (0..9);  print"   pre ++\n";
    print --$| for (0..9);  print"   pre --\n";
    
  2. or download this
    0111111111   post ++
    1010101010   post --
    1111111111   pre ++
    0101010101   pre --