Help for this page

Select Code to Download


  1. or download this
    my @adjustments = (
        +1900, +1, 0, 0, 0, 0,
    );
    my @t = pairwise { $a+$b } @adjustments, @{[localtime]};
    
  2. or download this
    
    my @adjustments = (
    ...
    );
    
    my @t = pairwise { $a->($b) } @adjustments, @{[localtime]};