]> Nishi Git Mirror - gwion.git/commitdiff
:art: Update syntax
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Sun, 6 Sep 2020 23:53:52 +0000 (01:53 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Sun, 6 Sep 2020 23:53:52 +0000 (01:53 +0200)
docs/Reference/ControlFlow/ForLoop.mdr

index 345bdf7131080757c1b462ed1db29b9fa3b2e66b..f14331855cd2c68770ba8f1661e62dee1ade9eac 100644 (file)
@@ -36,9 +36,9 @@ for(int i; i < 3; ++i) {
 #### Simple auto loop
 @``` forloop4.gw
 int array[2][3];
-for(auto a: array) {
+foreach(a: array) {
   <<< a >>>;
-  for(auto b: a)
+  foreach(b: a)
     <<< b >>>;
 }
 @```  
@@ -50,12 +50,12 @@ If you want to change it the value in the array, you need a pointer
 @``` forloop5.gw
 int array[2][3];
 int i;
-for(auto a: array) {
-  for(auto ref b: a)
+foreach(a: array) {
+  foreach(ref b: a)
     <<< ++i => *b >>>;
 }
-for(auto a: array) {
-  for(auto ref b: a)
+foreach(a: array) {
+  foreach(ref b: a)
     <<< *b >>>;
 }
 @```