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

Changes between Version 1 and Version 2 of PythonChallenge3

Show
Ignore:
Author:
jpelcis (IP: 68.112.60.116)
Timestamp:
08/29/06 22:22:36 (18 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PythonChallenge3

    v1 v2  
    1515        foreach (Regex match; pattern.search(text)) 
    1616                Stdout.print(match.match(2)); 
     17        Stdout.flush(); 
    1718} 
    1819}}} 
    5455#!d 
    5556                Stdout.print(match.match(2)); 
     57        Stdout.flush(); 
    5658}}} 
    5759 
    58 Print the second tagged statement to the screen.  The tagged statement are delimited by the parenthesis. 
     60Print the second tagged statement to the screen.  The tagged statement are delimited by the parenthesis.  Upon completion, the data is flushed.