Merge: tests: Test result update for `curl_http`
[nit.git] / tests / test_operator_brackets.nit
index 4b1a479..e00f4d2 100644 (file)
 class Matrice
        # A matrice of integers
 
-       meth [](x: Int, y: Int): Int
+       fun [](x: Int, y: Int): Int
        # The integer at (x,y)
        do
                return _tab[x][y]
        end
 
-       meth []=(x: Int, y: Int, v: Int)
+       fun []=(x: Int, y: Int, v: Int)
        # Put v in (x, y)
        do
                # Buld more arrays if needed
@@ -48,15 +48,7 @@ class Matrice
                row[y] = v
        end
 
-private
-       attr _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])