- Use `else` rather than hard coding all test cases. This will only be used if no main module is found AND testing is enabled - so it should be a safe bet
This commit is contained in:
Tristan B. Velloza Kildaire 2024-02-27 10:03:11 +02:00
parent 0a6b89cf68
commit 93d295412d
1 changed files with 1 additions and 1 deletions

View File

@ -1411,7 +1411,7 @@ int main()
return 0;
}`);
}
else if(cmp(mod.getName(), "simple_variables_decls_ass") == 0)
else
{
modOut.writeln(`
int main()