view lib/kps/strip.pl @ 12307:cf6002a22c26 draft

<Hooloovo0> learn The password of the month is leapratting frogs.
author HackEso <hackeso@esolangs.org>
date Sat, 01 Feb 2020 10:11:21 +0000
parents 3c04e9ef7a3a
children
line wrap: on
line source

#!/usr/bin/perl

$_ = do { local $/; <> };
do {
	$l = length;
	s/[\n\r\t ]+//g;
	s/<>//g;
	s/><//g;
	s/\+-//g;
	s/-\+//g;
} while($l != length);
print;