Bläddra i källkod

Tabs -> spaces

Taddeus Kroes 12 år sedan
förälder
incheckning
41aa7fabce
1 ändrade filer med 30 tillägg och 30 borttagningar
  1. 30 30
      test/testsuite/functional_test/1_array.cvc

+ 30 - 30
test/testsuite/functional_test/1_array.cvc

@@ -6,37 +6,37 @@ export int main()
 {
     int a;
     int b;
-	int [5,3]t =1;
-	
+    int [5,3]t =1;
+
     int [5,3]c =[[1,2,300],
-				 1,
-				 3,
-				 [3,4],
-				 6
-				];
-
-
-	c[4-2,2] = 2;
-	for(int q=0,5)
-	{
-		for(int p=0,3)
-		{	printInt(c[q,p]);
-			printSpaces(3);
-		}
-		printNewlines(1);
-		
-	}
-	printNewlines(3);
-	
-	for(int q=0,5)
-	{
-		for(int p=0,3)
-		{	printInt(t[q,p]);
-			printSpaces(3);
-		}
-		printNewlines(1);
-	}
-	
+                 1,
+                 3,
+                 [3,4],
+                 6
+                ];
+
+
+    c[4-2,2] = 2;
+    for(int q=0,5)
+    {
+        for(int p=0,3)
+        {   printInt(c[q,p]);
+            printSpaces(3);
+        }
+        printNewlines(1);
+
+    }
+    printNewlines(3);
+
+    for(int q=0,5)
+    {
+        for(int p=0,3)
+        {   printInt(t[q,p]);
+            printSpaces(3);
+        }
+        printNewlines(1);
+    }
+
     return 1;
 }