added missing --help

This commit is contained in:
Sven Vogel 2024-06-03 10:14:25 +02:00
parent f16c10d94b
commit e25fd4b559
1 changed files with 5 additions and 0 deletions

View File

@ -46,6 +46,11 @@ int main(int argc, char *argv[]) {
setup(argc, argv);
if (is_option_set("help")) {
print_help();
exit(0);
}
print_message(Info, "Running GSC version %s", GSC_VERSION);
run_compiler();