#include #include int main(int argc, char **argv){ char *username = argv[1]; typedef enum Mode { normal, uwuspk, cowboy } mode; mode current_mode = atoi(argv[2]); switch (current_mode) { case normal: goto normal_greet; case uwuspk: goto femboy_style_greet; case cowboy: goto arthur_morgan_greet; default: goto abort; } normal_greet: printf("Hello, %s!\n", username); return EXIT_SUCCESS; femboy_style_greet: printf("Aya~! Hewo, %s-kun!\n", username); return EXIT_SUCCESS; arthur_morgan_greet: printf("Hey there, partner."); return EXIT_SUCCESS; abort: return EXIT_FAILURE; }