Re: New OO interface to handle time

2001-09-09 Thread Kirrily Robert
Winfried wrote: > >I wrote a set of modules to deal with time in an object oriented >fashion. Example: > > use Time::OO; > > my $time = Time::OO->new(); > $time->import(time()); > $time->month->next(); # oh isn't this "becautiful" ;) > print $time->as_string("%d.%m.%

New OO interface to handle time

2001-09-01 Thread Winfried Truemper
Hi, I wrote a set of modules to deal with time in an object oriented fashion. Example: use Time::OO; my $time = Time::OO->new(); $time->import(time()); $time->month->next(); # oh isn't this "becautiful" ;) print $time->as_string("%d.%m.%Y %H:%M:%S\n"); #