Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 2142

Show
Ignore:
Timestamp:
05/03/07 16:40:15 (2 years ago)
Author:
kris
Message:

test for Linux local time

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/example/system/localtime.d

    r2140 r2142  
    4343                          date.year 
    4444                         ); 
     45 
     46 
     47        // format date 
     48        date.set (Utc.local); 
     49        Stdout.formatln ("{}, {} {:d2} {:d2}:{:d2}:{:d2} GMT{}{:d2}:{:d2} {}", 
     50                          date.asDay, 
     51                          date.asMonth, 
     52                          date.day, 
     53                          date.hour,  
     54                          date.min, 
     55                          date.sec, 
     56                          sign, 
     57                          tz / 60, 
     58                          tz % 60, 
     59                          date.year 
     60                         ); 
    4561}