Time Zones
- What Time is it There? - 你那邊幾點 by 蔡明亮
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