Delete code, adjust example to operator overload errors
This commit is contained in:
@@ -278,8 +278,7 @@ int main(int argument_count, char **arguments){
|
||||
emit_line_directives = true;
|
||||
if(argument_count > 1){
|
||||
String program_name = string_from_cstring(arguments[1]);
|
||||
compile_file(program_name, COMPILE_AND_RUN);
|
||||
|
||||
compile_file(program_name, COMPILE_PRINT_STATS);
|
||||
}
|
||||
|
||||
else {
|
||||
@@ -288,7 +287,7 @@ int main(int argument_count, char **arguments){
|
||||
// compile_file("examples/language_basics.kl"_s, COMPILE_AND_RUN);
|
||||
For(examples){
|
||||
if(it.is_directory) continue;
|
||||
compile_file(it.absolute_path, COMPILE_AND_RUN);
|
||||
compile_file(it.absolute_path, COMPILE_AND_RUN | COMPILE_TESTING);
|
||||
}
|
||||
}
|
||||
__debugbreak();
|
||||
|
||||
Reference in New Issue
Block a user