remove unmaintained documentation: developpez and nitreference
[nit.git] / doc / developpez / poo / listings / accesseurs4_c.nit
diff --git a/doc/developpez/poo/listings/accesseurs4_c.nit b/doc/developpez/poo/listings/accesseurs4_c.nit
deleted file mode 100644 (file)
index f52be92..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-interface I
-       fun attr: Int is abstract
-       fun attr=(o: Int) is abstract
-end
-
-class A
-super I
-       redef var attr: Int redef writable
-end
-