]> git.llucax.com Git - z.facultad/75.31/presentacion.git/commitdiff
Cambio pedorro. master svn_import
authorLeandro Lucarella <llucax@gmail.com>
Mon, 11 Jul 2005 05:40:38 +0000 (05:40 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Mon, 11 Jul 2005 05:40:38 +0000 (05:40 +0000)
ejemplos/herencia.d

index 6bd7ef040b50bcf6a88535ad8775a6ccd0381836..81b5652b3b44070ce6dc85cb9d5305b15a250f55 100644 (file)
@@ -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;
 }