Cleaned up a few things
This commit is contained in:
parent
224349ac9c
commit
258e10aef6
14
main.d
14
main.d
|
@ -172,23 +172,17 @@ void main(string[] args)
|
|||
importDirs ~= dirName(args[1]);
|
||||
else
|
||||
importDirs ~= getcwd();
|
||||
bool useStdin = false;
|
||||
Token[] tokens;
|
||||
try
|
||||
{
|
||||
to!size_t(args[1]);
|
||||
useStdin = true;
|
||||
}
|
||||
catch(ConvException e) {}
|
||||
Token[] tokens;
|
||||
if (useStdin)
|
||||
{
|
||||
to!size_t(args[1]);
|
||||
string f;
|
||||
char[] buf;
|
||||
while (stdin.readln(buf))
|
||||
f ~= buf;
|
||||
f ~= buf;
|
||||
tokens = f.tokenize();
|
||||
}
|
||||
else
|
||||
catch(ConvException e)
|
||||
{
|
||||
tokens = args[1].readText().tokenize();
|
||||
args.popFront();
|
||||
|
|
Loading…
Reference in New Issue