1 /****************************************************************************
3 Alumno: Leandro Lucarella
4 Fecha: mié jul 27 15:06:39 ART 2005
5 ****************************************************************************/
13 if B then {System.show "Esto NO debería imprimirse"} end
14 % Acá lanza la excepción, porque el if/else debe retornar un valor
15 %{System.show "Esto NO debería imprimirse"}
18 if B then {System.show "Esto NO debería imprimirse"} end
19 % Acá no hay problema, porque no se retorna un valor
20 %{System.show "Esto debería imprimirse"}
27 % vim: set et sw=4 sts=4 filetype=oz :