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

@ -29,7 +29,7 @@ begin
if IsNoError(source_input) then
lexer_initialize(ADR(lexer), source_input);
transpile(ADR(lexer), StdOut);
transpile(ADR(lexer), StdOut, command_line^.input);
lexer_destroy(ADR(lexer));
@ -48,4 +48,4 @@ begin
ExitOnHalt(1)
end;
HALT()
end Compiler.
end.