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

Changeset 2130

Show
Ignore:
Timestamp:
05/02/07 17:01:27 (2 years ago)
Author:
kris
Message:

removed debug info

Files:

Legend:

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

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