#!/usr/bin/perl -w
use strict;

use CTK;

START:  say "-"x16, " START ", tms," ","-"x16;
#########################
### START
#########################

my $c = new CTK;

say;
say "CTK Version: ",$c->VERSION;
say;
say "For creating new tiny project use ctklib -t [PROJECTNAME]";
say;

#########################
### FINISH
#########################
FINISH: say "-"x16, " FINISH ", tms," ","-"x16;
exit(0);

1;
__END__
