X-Git-Url: https://git.llucax.com/z.facultad/75.31/presentacion.git/blobdiff_plain/bb4150786199a6e3a5dc8af819cf96b3c045c10c..refs/heads/master:/ejemplos/herencia.d diff --git a/ejemplos/herencia.d b/ejemplos/herencia.d index 6bd7ef0..81b5652 100644 --- a/ejemplos/herencia.d +++ b/ejemplos/herencia.d @@ -73,9 +73,11 @@ int main() new Sub1("sub1"); printf("\nSub2\n"); Sub2 s2 = new Sub2("sub2"); + Otro o = new Otro; + o.print(); printf("\nHacer\n"); hacer(s2); - hacer(new Otro); + hacer(o); printf("----------------------------------------\n"); return 0; }