Help for this page

Select Code to Download


  1. or download this
    sub binary (0|1 $n) { $n }
    
    ...
       my $E = binary($k);
       return $E ~ $b;
       }
    
  2. or download this
    multi binary ($n where 0|1) { $n }
    
    ...
       my $E = binary($k);
       return $E ~ $b;
    }