Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > e5d8176b5f7b8e125fe5cdde215dbefa > files > 13

perl-Tk-Clock-0.340.0-2.mga4.noarch.rpm

#!/pro/bin/perl

# A default clock the starts at 1.5 time original size and is scalable
use Tk;
use Tk::Clock;

my $m = MainWindow->new;
my $c = $m->Clock->pack (-expand => 1, -fill => "both");
$c->config (anaScale  => 150)->config (anaScale => 0);

MainLoop;