remove unmaintained documentation: developpez and nitreference
[nit.git] / doc / developpez / poo / listings / interface_c.nit
diff --git a/doc/developpez/poo/listings/interface_c.nit b/doc/developpez/poo/listings/interface_c.nit
deleted file mode 100644 (file)
index 3da822d..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-interface AfficheType
-       fun afficherType is abstract
-end
-
-class Personne 
-       super AfficheType
-
-       redef fun afficherType 
-       do
-               print "Je suis une personne"
-       end
-
-end
-
-class Voiture
-       super AfficheType
-
-       redef fun afficherType 
-       do
-               print "Je suis une voiture"
-       end
-end