remove unmaintained documentation: developpez and nitreference
[nit.git] / doc / developpez / modules / listings / sorter1_c.nit
diff --git a/doc/developpez/modules/listings/sorter1_c.nit b/doc/developpez/modules/listings/sorter1_c.nit
deleted file mode 100644 (file)
index 30a6c11..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-var tab = ["a", "c", "b"] # Un tableau non trié
-
-print tab # acb
-
-var sorter = new ComparableSorter[String] # On instancie le sorter ComparableSorter en précisant le type que l'on veut trier, ici des String
-
-sorter.sort(tab) # On trie le tableau
-
-print tab # abc