drop unused, commented code

This commit is contained in:
Klas Lindfors
2014-04-07 09:02:34 +02:00
parent 5dfc68fe85
commit 14f473f4df
-12
View File
@@ -91,15 +91,3 @@ for(my $i = 0; $i < length($hex); $i += 2) {
}
print "\n";
__END__
for(my $i = 0; $i < length($in); $i += 8) {
my $part = substr($in, $i, $i + 8);
my $bits = "0b";
foreach my $char (split(//, $part)) {
$bits .= $encoding{$char};
}
my $num = eval($bits);
warn $num;
}