remove unmaintained documentation: developpez and nitreference
[nit.git] / doc / developpez / syntaxe / listings / array_c.nit
diff --git a/doc/developpez/syntaxe/listings/array_c.nit b/doc/developpez/syntaxe/listings/array_c.nit
deleted file mode 100644 (file)
index 29c82ff..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-var tableau = new Array[String]
-
-tableau[0] = "toto"
-tableau[1] = "tata"
-
-print tableau[0] #Affiche "toto"
-print tableau[1] #Affiche "tata"