= std.stream readLine = ''Part of'' StandardLibraryCategory == Description == Read a file line-by-line. == Example == {{{ #!d import std.c.stdio; import std.stream; int main (char [] [] args ) { File file = new File("testreadLine.d"); char[] line; do { line = file.readLine(); printf("Line: %.*s\n",line); }while(!file.eof); getch(); return 1; } }}} == Source == Based on code from [http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=221 D.bugs:221].