Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

initial commmit de la branche Nude with composer

git authored on 14/03/2019 16:48:02
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,13 @@
1
+<?php
2
+
3
+namespace MVC\Classe;
4
+
5
+class Tri{
6
+
7
+    public static function cmp($a,$b){
8
+        if ($a == $b) {
9
+            return 0;
10
+        }
11
+        return ($a < $b) ? -1 : 1;
12
+    }
13
+}
0 14
\ No newline at end of file