]> Nishi Git Mirror - gwion.git/commitdiff
:art: Update
authorfennecdjay <fennecdjay@gmail.com>
Sat, 3 Sep 2022 12:26:54 +0000 (14:26 +0200)
committerfennecdjay <fennecdjay@gmail.com>
Sat, 3 Sep 2022 12:26:54 +0000 (14:26 +0200)
docs/Overview/declaration.mdr
docs/Reference/ControlFlow/ForLoop.mdr
docs/Reference/ControlFlow/Repeat.mdr
docs/Reference/Functions/Lambdas.mdr
docs/Reference/Functions/README.mdr
docs/Reference/Types/Unions.mdr

index 14753e4d4fa230a973250e219f7e3129833d797e..8cbb0525f0f9bd4069ff8a66707f43886b55e83f 100644 (file)
@@ -34,6 +34,6 @@ late Object object_ref;
 
 ```gwion,editable
 var int array_ref[];
-new int[2] => array_ref;
+new int[2] :=> array_ref;
 <<< array_ref >>>;
 ```
index 69a44eaf8fa1006891f567ff3efde4481be45ed3..96e909722dffd896cc57a1926afb1efb50b04d84 100644 (file)
@@ -11,8 +11,8 @@ It also works with a block of code.
 
 ```gwion,editable
 for(var int i; i < 3; ++i) {
-   i/2 => var float f1;
-   i/2. => var float f2;
+   i/2 :=> var float f1;
+   i/2. :=> var float f2;
    <<< i, " " , f1, " ", f2 >>>;
 }
 ```  
@@ -48,7 +48,7 @@ var int array[2][3];
 var int i;
 foreach(a: array) {
   foreach(b: a)
-    <<< ++i => b >>>;
+    <<< ++i :=> b >>>;
 }
 foreach(a: array) {
   foreach(b: a)
index 216596239ac975077d06c0cc57fcb8dc6cc657d5..76f778ad445c8013d3676038c15a0f7389168680 100644 (file)
@@ -16,7 +16,7 @@ of course this also works with a block code.
 
 ```gwion,editable
 repeat(3) {
-   maybe ? "You" : "Me" => var string s;
+   maybe ? "You" : "Me" :=> var string s;
    <<< "Hello, ", s, "!" >>>;
 }
 ```  
index 9914208132e754c4502649f84fce2da0e7a541ec..af2d32c5accc2c91eef45a3a4f8d2755819774d7 100644 (file)
@@ -26,7 +26,7 @@ Notice there is no semicolon in the lambda body;
 ### Passing to a function pointer
 ```gwion,editable
 funptr void fptr_t(int);
-\ i { <<< "passed '", i, "'" >>>; } @=> var fptr_t fptr;
+\ i { <<< "passed '", i, "'" >>>; } :=> var fptr_t fptr;
 fptr(4);
 ```  
 
index d03acaa9b3e9e29b2800cf354046018da09226b0..0f2b24e20a8e219913f9bf8d92fe0601c9e2dfad 100644 (file)
@@ -30,6 +30,6 @@ fun int test(int i, int j) {
   return i + j;
 }
 
-test(_, 2) @=> const auto mytest;
+test(_, 2) :=> const auto mytest;
 <<< 40 => mytest >>>;
 ```
index e5447641e8b1266db37a816caf19a74dab06bca5..9b9da3ddc9f428918a6631326de8da75e7ce83f0 100644 (file)
@@ -11,12 +11,12 @@ union U {
 };
 
 #! create an union with field `i` set to `1`
-new U(i, 1) => var U u;
+new U(i, 1) :=> var U u;
 
 <<< u.i >>>;
 
 #! set field f to 2.4
-2.4 => u.f;
+2.4 :=> u.f;
 <<< u.f >>>;
 
 #! this will trigger an invalid access error