remove unmaintained documentation: developpez and nitreference
[nit.git] / doc / developpez / poo / listings / redef5_c.nit
diff --git a/doc/developpez/poo/listings/redef5_c.nit b/doc/developpez/poo/listings/redef5_c.nit
deleted file mode 100644 (file)
index 3f63f37..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-class A
-       var attr: String
-end
-
-class B
-       super A
-
-       init(attr)
-       do
-               self.attr = attr.to_upper
-       end
-end
-
-var a = new A("toto")
-print a.attr
-
-var b = new B("toto")
-print b.attr