From: Leandro Lucarella Date: Mon, 11 Jul 2005 05:40:38 +0000 (+0000) Subject: Cambio pedorro. X-Git-Tag: svn_import X-Git-Url: https://git.llucax.com/z.facultad/75.31/presentacion.git/commitdiff_plain/a1aa0c314b9356e8f406d91a2da2d1adf47a754c?ds=sidebyside Cambio pedorro. --- 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; }