Help for this page

Select Code to Download


  1. or download this
    printf "%04s-%02s-%02s\n", map { @$a ? $_ + shift @$a : $_} (localtime
    +,$a=[1900,1])[5,4,3];
    
  2. or download this
    (localtime,$a=[1900,1])
    
  3. or download this
    (localtime,$a=[1900,1])[5,4,3]
    
  4. or download this
    map { 
       @$a 
         ? $_ + shift @$a 
         : $_
    } (localtime,$a=[1900,1])[5,4,3];