mirror of
https://github.com/mi57730/a2d.git
synced 2024-11-26 02:49:18 +00:00
15 lines
199 B
Perl
15 lines
199 B
Perl
|
#!/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/;
|
||
|
}
|