Changeset 34 for trunk/VerboseLoop.d
- Timestamp:
- 01/04/09 08:20:43 (3 years ago)
- Files:
-
- trunk/VerboseLoop.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/VerboseLoop.d
r24 r34 2 2 import fcgi.Connection; 3 3 4 import tango.text.convert.Layout; 5 import tango.io.Buffer; 6 import tango.io.Print; 7 import tango.io.Stdout; 4 import tango.io.stream.Format; 8 5 9 6 int main (char[][] args) … … 13 10 int counter = 0; 14 11 15 Stdout = new Print!(char) (new Layout!(char) (),request.stdout);12 auto Stdout = new FormatOutput!(char) (request.stdout); 16 13 while ( request.accept () ) 17 14 {
