]> git.llucax.com Git - z.facultad/75.31/presentacion.git/blob - ejemplos/execpt.d
Ejemplo de herencia.
[z.facultad/75.31/presentacion.git] / ejemplos / execpt.d
1
2 int main()
3 {
4         try
5         {
6                 //throw new Exception("execpcion");
7                 assert(0);
8         }
9         catch (Exception e)
10         {
11                 printf("%.*s\n", e.msg);
12         }
13         finally
14         {
15                 printf("finally\n");
16         }
17         return 0;
18 }