blob: 194047b47f75280c34dd2593cc74c2213e7706b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package CIL::Command;
use strict;
use warnings;
sub name {
my $self = shift;
my $name = lc( ref $self || $self );
$name =~ s/^CIL::Command:://i;
return $name;
}
'end of package CIL::Command';
|