Changeset 768

Show
Ignore:
Timestamp:
01/21/06 10:59:34 (3 years ago)
Author:
kris
Message:

presentation on linux was missing a newline

Files:

Legend:

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

    r700 r768  
    3030 
    3131        // format fields 
    32         Print ("%.3s %.3s %02d %02d:%02d:%02d GMT%c%02d%02d %d", 
    33                fields.toDowName, 
    34                fields.toMonthName, 
    35                fields.day, 
    36                fields.hour,  
    37                fields.min, 
    38                fields.sec, 
    39                sign, 
    40                tz / 60, 
    41                tz % 60, 
    42                fields.year 
    43                ); 
     32        Println ("%.3s %.3s %02d %02d:%02d:%02d GMT%c%02d%02d %d", 
     33                 fields.toDowName, 
     34                 fields.toMonthName, 
     35                 fields.day, 
     36                 fields.hour,  
     37                 fields.min, 
     38                 fields.sec, 
     39                 sign, 
     40                 tz / 60, 
     41                 tz % 60, 
     42                 fields.year 
     43                 ); 
    4444}