Next Pigs in Space 22

Things that suck: Time and Time Zones

        my $then    = Moonpig::DateTime->new( month => 4, ... );
        my $later   = $then + 4;
        my $earlier = $then - 60 * 15;
        my $elapsed = Moonpig->env->now() - $then;
        print "$elapsed seconds since then\n";
        my $next_week = Moonpig->env->now() + days(7);
        sub days { $_[0] * 86400 }

Next Copyright © 2013 M. J. Dominus