X-Git-Url: http://nitlanguage.org diff --git a/tests/test_operator_brackets.nit b/tests/test_operator_brackets.nit index 2f680d4..e00f4d2 100644 --- a/tests/test_operator_brackets.nit +++ b/tests/test_operator_brackets.nit @@ -48,15 +48,7 @@ class Matrice row[y] = v end -private - var _tab: Array[Array[Int]] # An array of array to store items - - - init - # Build an empty matrice - do - _tab = new Array[Array[Int]] - end + private var tab = new Array[Array[Int]] # An array of array to store items end @@ -66,6 +58,6 @@ var m = new Matrice m[1,1] = 11 m[2,1] = 21 m[5,5] = 55 -printn(m[1,1]) -printn(m[2,1]) -printn(m[5,5]) +print(m[1,1]) +print(m[2,1]) +print(m[5,5])