doc: french doc "développez en Nit"
[nit.git] / doc / developpez / poo / listings / attribut2_c.nit
1 class MaClasse
2 var monAttribut1: Int = 1
3 var monAttribut2: String = "toto"
4 end
5
6 var o = new MaClasse
7
8 print o.monAttribut1 #1
9 print o.monAttribut2 #toto