doc: french doc "développez en Nit"
[nit.git] / doc / developpez / syntaxe / listings / typage_c.nit
1 var x # Déclaration d'une variable locale
2
3 x = 5 # Le type statique de x devient Int
4 print x + 1 # Affiche 6
5
6 x = [6, 7] # Le type statique de x devient Array[Int]
7 print x[0] # Affiche 6