1
0
mirror of https://github.com/mi57730/a2d.git synced 2025-04-17 19:37:00 +00:00
2018-02-25 18:40:36 -08:00

15 lines
199 B
Perl
Executable File

#!/usr/bin/env perl
use strict;
use warnings;
my $depth = 0;
while (<STDIN>) {
++$depth if m/\.proc/ || m/\.scope/;
print "$depth - $_";
--$depth if m/\.endproc/ || m/\.endscope/;
}