Help for this page

Select Code to Download


  1. or download this
    $a = ord $/;
    $b = $a - 9;
    ...
    }
    
    print chr for @o;
    
  2. or download this
    for(
        '01110011111100111000011100',
    ...
    }
    
    print chr for @o;
    
  3. or download this
    sub increment_pos {
        my ($bitstring, $inc) = @_;
    ...
    increment_pos('10000000010100010000100100' => 1);
    
    print chr for @o;