rust/src/etc/indenter
2013-05-03 20:01:42 -04:00

17 lines
238 B
Perl
Executable File

#!/usr/bin/perl
use strict;
use warnings;
my $indent = 0;
while (<>) {
if (/^rust: ~">>/) {
$indent += 1;
}
printf "%03d %s%s", $indent, (" " x $indent), $_;
if (/^rust: ~"<</) {
$indent -= 1;
}
}