Compiling multiple examples

This commit is contained in:
Krzosa Karol
2022-06-27 13:37:55 +02:00
parent 2597e66135
commit 7b343ca642
4 changed files with 74 additions and 65 deletions

View File

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