Compiling and testing multiple files

This commit is contained in:
Krzosa Karol
2022-06-27 14:01:22 +02:00
parent 7b343ca642
commit a363a5e982
4 changed files with 62 additions and 31 deletions

View File

@@ -228,7 +228,7 @@ int main(int argument_count, char **arguments){
program_name = string_from_cstring(arguments[1]);
}
compile_file("examples/runtime_type_information.kl"_s);
compile_file("examples/types_as_first_class_values.kl"_s);
compile_file("examples/runtime_type_information.kl"_s, COMPILE_AND_RUN);
compile_file("examples/types_as_first_class_values.kl"_s, COMPILE_AND_RUN);
__debugbreak();
}