X-Git-Url: http://nitlanguage.org diff --git a/doc/developpez/syntaxe/listings/typage_c.nit b/doc/developpez/syntaxe/listings/typage_c.nit deleted file mode 100644 index 1c6c397..0000000 --- a/doc/developpez/syntaxe/listings/typage_c.nit +++ /dev/null @@ -1,7 +0,0 @@ -var x # Déclaration d'une variable locale - -x = 5 # Le type statique de x devient Int -print x + 1 # Affiche 6 - -x = [6, 7] # Le type statique de x devient Array[Int] -print x[0] # Affiche 6