27int main(
int argc,
char **argv)
29 if (argc != 2 and argc != 6)
33 std::string help_o{
"-h"};
34 std::string argv_1{argv[1]};
38 std::cout <<
"HELP MESSAGE!!" << std::endl;
41 std::string target_name{argv[2]};
42 std::string output_name{argv[5]};
44 std::ofstream outfile(output_name);
46 outfile <<
"dummy-compiler with " << target_name <<
" target" << std::endl;