diff --git a/source/tlang/commandline/lexer.d b/source/tlang/commandline/lexer.d index b498470..672fff2 100644 --- a/source/tlang/commandline/lexer.d +++ b/source/tlang/commandline/lexer.d @@ -47,8 +47,8 @@ public final class Lexer currentToken = ""; } - /* Add the ; token */ - currentTokens ~= ";"; + /* Add the splitter token */ + currentTokens ~= ""~currentChar; position++; }