]> Nishi Git Mirror - gwion.git/commitdiff
:art: UPdate gwion syntax (@ becomes ref)
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Wed, 1 Apr 2020 23:18:11 +0000 (01:18 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Wed, 1 Apr 2020 23:18:11 +0000 (01:18 +0200)
docs/Overview/declaration.mdr
docs/Reference/ControlFlow/forloop.mdr

index c3cd7f8218adedfc1077b54fdc4a1306970e38c9..9715be832f9075d5eeb6bb62430330a5b95e78c0 100644 (file)
@@ -13,7 +13,7 @@ Object o;
 ## Declaring a reference
 
 @``` decl1.gw
-Object @ref;
+Object ref ref;
 <<< "Reference points to no object yet: ", ref >>>;
 #!Object o @=> ref;
 new Object @=> ref;
index 0337296ce2a3857be28456fec19a77b912223589..c9dafd356978216b8fc8b4bae9569d98cb5130be 100644 (file)
@@ -51,11 +51,11 @@ If you want to change it the value in the array, you need a pointer
 int array[2][3];
 int i;
 for(auto a: array) {
-  for(auto @b: a)
+  for(auto ref b: a)
     <<< ++i => *b >>>;
 }
 for(auto a: array) {
-  for(auto @b: a)
+  for(auto ref b: a)
     <<< *b >>>;
 }
 @```