2013-04-10 21:29:02 -07:00
|
|
|
import tango.io.Console;
|
2015-02-20 00:35:01 -05:00
|
|
|
import tango.text.stream.LineIterator;
|
2013-04-10 21:29:02 -07:00
|
|
|
|
|
|
|
|
void main (char[][] args) {
|
2015-02-20 00:35:01 -05:00
|
|
|
foreach (line; new LineIterator!(char)(Cin.input)) {
|
|
|
|
|
// do something with each line
|
2013-04-10 21:29:02 -07:00
|
|
|
}
|
|
|
|
|
}
|