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