Don't require the module name after end

This commit is contained in:
2025-06-03 12:14:59 +02:00
parent 1983ef8e71
commit 82f0d40a56
10 changed files with 397 additions and 223 deletions

View File

@ -35,7 +35,7 @@ begin
parsed := true;
result^.parse := true
end;
if parameter[0] <> '-' then
if parameter[1] <> '-' then
parsed := true;
if Length(result^.input) > 0 then
@ -72,4 +72,4 @@ begin
return result
end;
end CommandLineInterface.
end.