diff --git a/personas.wlk b/personas.wlk index 2b20648..da6963b 100644 --- a/personas.wlk +++ b/personas.wlk @@ -5,7 +5,7 @@ class Persona{ // 1) method esAdolescente(){ - return edad >= 12 || edad < 19 + return edad >= 12 && edad < 19 } // 2) @@ -20,13 +20,11 @@ class Persona{ // 4) method vivirEvento(evento){ - emociones.forEach({emocion => emocion.puedeLiberarse(self) - emocion.liberarse(evento) - emocion.agregarEvento()}) + emociones.forEach({emocion=>emocion.agregarEvento()}) + emociones.forEach({emocion=>emocion.puedeLiberarse(self) + emocion.liberarse(Evento)}) } - - } class Grupo{