Genera un switch de tipo int, con opciones de 1,2,3 donde 1 retorna Luis, 2 retorna Angel y 3 por default
// Switch void switchFunction(int option) { switch(option) { case 1: print("Luis"); break; case 2: print("Angel"); break; default: print("Default"); break; } } switchFunction(1) switchFunction(2) switchFunction(3)