Made sloc print when using stdin instead of a file.

This commit is contained in:
John Maschmeyer 2012-10-17 18:13:14 -05:00
parent 12e242ca0f
commit ae49c5449c
1 changed files with 1 additions and 1 deletions

2
main.d
View File

@ -161,7 +161,7 @@ void main(string[] args)
char[] buf;
while (stdin.readln(buf))
f ~= buf;
f.tokenize().count!(a => isLineOfCode(a.type))();
writeln(f.tokenize().count!(a => isLineOfCode(a.type))());
}
else
{