App-TimeClock
view release on metacpan or search on metacpan
lib/App/TimeClock/Daily/ConsolePrinter.pm view on Meta::CPAN
package App::TimeClock::Daily::ConsolePrinter;
use strict;
use warnings;
our @ISA = qw(App::TimeClock::Daily::PrinterInterface);
use POSIX qw(strftime);
use utf8;
binmode STDOUT, ':utf8';
our $hrline = '+' . ('-' x 62) . '+' . ('-' x 7) . '+';
=head1 NAME
App::TimeClock::Daily::ConsolePrinter
=head1 DESCRIPTION
Implements the L<App::TimeClock::Daily::PrinterInterface>. Will print a simple ASCII
lib/App/TimeClock/Weekly/ConsolePrinter.pm view on Meta::CPAN
package App::TimeClock::Weekly::ConsolePrinter;
use strict;
use warnings;
our @ISA = qw(App::TimeClock::Weekly::PrinterInterface);
use POSIX qw(strftime);
use utf8;
binmode STDOUT, ':utf8';
our $hrline = '+' . ('-' x 62) . '+' . ('-' x 7) . '+';
=head1 NAME
App::TimeClock::Weekly::ConsolePrinter
=head1 DESCRIPTION
Implements the L<App::TimeClock::Weekly::PrinterInterface>. Will print a simple ASCII
( run in 0.352 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )