Help for this page

Select Code to Download


  1. or download this
    my $time_zone_func = ( $file =~ /^London/ ) ?
        sub { gmtime shift } : sub { localtime shift };
    
  2. or download this
    $foo = &$time_zone_func( time );
    
  3. or download this
    $bar = $time_zone_func->( time );