Help for this page

Select Code to Download


  1. or download this
    use Benchmark;
    $n = 1;   
    ...
    sub flipflop {
     $_[0] = !($_[0]) 
    }
    
  2. or download this
    use Benchmark;
    $n = 1;   
    ...
    'norm' => '$n = !($n)' } );
    
    sub flip { !($_[0]) }