aboutsummaryrefslogblamecommitdiffstats
path: root/Symbols/sym.pl
blob: 11d3395684aff35ff52861ce813c4c500be35762 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                             
while(<>) {
	for(split('')) {
		$n = ord($_);
		if ($n & 0x80) {
			printf("\\%.3o", $n);
		} else {
			print $_;
		}
	}
}