Time Zones
- You're an obsessive, alienated young man in Taipei
- you sold your dead father's watch to a Taiwanese woman who's gone to Paris
- you need to know ...
- What Time is it There?
my $dt = DateTime->now( time_zone => 'Asia/Taipei' ); print ' Taipei: ', $dt->datetime, "\n"; $dt->set_time_zone( 'Europe/Paris' ); print ' Paris: ', $dt->datetime, "\n";
- run the script - what-time-is-it-there