comparison lib/kps/strip.pl @ 12274:3c04e9ef7a3a draft

<kspalaiologos> `` cp -rf /hackenv/tmp/asmbf-1.2.7/bin/* /hackenv/lib/kps/
author HackEso <hackeso@esolangs.org>
date Tue, 31 Dec 2019 17:47:30 +0000
parents
children
comparison
equal deleted inserted replaced
12273:de2990eb5cdf 12274:3c04e9ef7a3a
1 #!/usr/bin/perl
2
3 $_ = do { local $/; <> };
4 do {
5 $l = length;
6 s/[\n\r\t ]+//g;
7 s/<>//g;
8 s/><//g;
9 s/\+-//g;
10 s/-\+//g;
11 } while($l != length);
12 print;