Adding upstream version 0.5.1
This commit is contained in:
11
Symbols/sym.pl
Normal file
11
Symbols/sym.pl
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
while(<>) {
|
||||
for(split('')) {
|
||||
$n = ord($_);
|
||||
if ($n & 0x80) {
|
||||
printf("\\%.3o", $n);
|
||||
} else {
|
||||
print $_;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user