Rename common to ACU
This commit is contained in:
parent
641b516355
commit
e243e7bbcf
4 changed files with 82 additions and 48 deletions
|
@ -13,10 +13,13 @@ use Grading;
|
|||
use Trace;
|
||||
|
||||
# Parse arguments
|
||||
my $input;
|
||||
our $debug;
|
||||
my $input; my $format;
|
||||
my $help; my $man;
|
||||
GetOptions ("help|h|?" => \$help,
|
||||
"man" => \$man,
|
||||
"format|F" => \$format,
|
||||
"debug|d" => \$debug,
|
||||
"" => \$input)
|
||||
or pod2usage(2);
|
||||
pod2usage(1) if $help;
|
||||
|
@ -51,5 +54,5 @@ do {
|
|||
|
||||
$grade->fill($trace->getIds);
|
||||
|
||||
say $trace->getInfo("assistant").",".$grade->compute();
|
||||
say $trace->getFirstWho().",".$grade->compute();
|
||||
} while ($#ARGV >= 0);
|
||||
|
|
Reference in a new issue