]> Nishi Git Mirror - gwion.git/commitdiff
:art: Use @hide
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Thu, 6 Aug 2020 11:43:42 +0000 (13:43 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Thu, 6 Aug 2020 11:43:42 +0000 (13:43 +0200)
docs/Overview/declaration.mdr
docs/README.mdr
docs/Reference/ControlFlow/Repeat.mdr
docs/Reference/ControlFlow/forloop.mdr
docs/Reference/ControlFlow/whileuntil.mdr
docs/Reference/Functions/Lambdas.mdr
docs/Reference/Functions/README.mdr
docs/Reference/Functions/Variadic.mdr
docs/Reference/Types/Enums.mdr

index 9715be832f9075d5eeb6bb62430330a5b95e78c0..d4666ce1554c7ef2a259a9397eacace4992fc414 100644 (file)
@@ -8,7 +8,7 @@ int i;
 Object o;
 <<< i, " ", o >>>;
 @```
-@exec make -s decl0.test
+@hide make -s decl0.test
 
 ## Declaring a reference
 
@@ -19,7 +19,7 @@ Object ref ref;
 new Object @=> ref;
 <<< "But now it does: ", ref >>>;
 @```
-@exec make -s decl1.test
+@hide make -s decl1.test
 
 ## Arrays
 
@@ -31,4 +31,4 @@ int ref[];
 new int[2] @=> ref;
 <<< ref >>>;
 @```
-@exec make -s decl2.test
+@hide make -s decl2.test
index 89e44d0cce0645edc536731edca1d2b93e95fc1a..33785d24c36e04089f2856db9d153a86c5e8cd3c 100644 (file)
@@ -10,7 +10,7 @@ Here is the piece of code you're waiting for :tada::
 @``` helloworld.gw
 <<< "Hello, World!" >>>;
 @```  
-@exec make -s CONTAINS="Hello, World!" helloworld.test
+@hide make -s CONTAINS="Hello, World!" helloworld.test
 
 ## (Bag of) Features
   * [single inheritance](https://en.wikipedia.org/wiki/Inheritance_(object-oriented_programming)#Design_constraints)
index 26428c73ee5d6fb8ef2035886327435080064653..4846ba4abfa350d1d7ff7fb73897e13c937e08fd 100644 (file)
@@ -8,7 +8,7 @@ The easiest way to do an action repeatidly in Gwion is, ... the **repeat** keywo
 repeat(3)
    <<< "Hello, world!" >>>;
 @```  
-@exec make -s CONTAINS="Hello" repeat.test
+@hide make -s CONTAINS="Hello" repeat.test
 
 
 ## Block example
@@ -21,4 +21,4 @@ repeat(3) {
    <<< "Hello, ", s, "!" >>>;
 }
 @```  
-@exec make -s CONTAINS="Hello" repeat2.test
+@hide make -s CONTAINS="Hello" repeat2.test
index c9dafd356978216b8fc8b4bae9569d98cb5130be..345bdf7131080757c1b462ed1db29b9fa3b2e66b 100644 (file)
@@ -6,7 +6,7 @@
 for(int i; i < 3; ++i)
    <<< i >>>;
 @```  
-@exec make -s forloop0.test
+@hide make -s forloop0.test
 
 It also works with a block of code.
 
@@ -17,7 +17,7 @@ for(int i; i < 3; ++i) {
    <<< i, " " , f1, " ", f2 >>>;
 }
 @```  
-@exec make -s forloop2.test
+@hide make -s forloop2.test
 
 ## Nested Loops
 @``` forloop3.gw
@@ -29,7 +29,7 @@ for(int i; i < 3; ++i) {
   }
 }
 @```  
-@exec make -s forloop3.test
+@hide make -s forloop3.test
 
 ### Auto Loops
 
@@ -42,7 +42,7 @@ for(auto a: array) {
     <<< b >>>;
 }
 @```  
-@exec make -s forloop4.test
+@hide make -s forloop4.test
 
 ### Auto Pointer loop
 If you want to change it the value in the array, you need a pointer 
@@ -59,4 +59,4 @@ for(auto a: array) {
     <<< *b >>>;
 }
 @```  
-@exec make -s forloop5.test
+@hide make -s forloop5.test
index 04bf9c360b7fe2bbb0f2bc9bba80d9559cf7e38c..24fdea6287517e774e518ded004d43c57545ecea 100644 (file)
@@ -7,7 +7,7 @@ while(true) {
   <<< "running..." >>>;
 }
 @```  
-@exec make -s while0.test
+@hide make -s while0.test
 
 well this may output nothing...
 lets try
@@ -20,4 +20,4 @@ do{
   <<< "running..." >>>;
 } while(true);
 @```  
-@exec make -s while1.test
+@hide make -s while1.test
index add84dd13f0e970da7c4637bdb9231aca79bfbae..fec5d2157899fd42325cdc3852c8cc58b2693a2e 100644 (file)
@@ -13,7 +13,7 @@ You can even use it to
 @``` lambda_call0.gw
 \ i { <<< "passed '", i, "'" >>>; }(3);
 @```  
-@exec make -s CONTAINS="passed '3'" lambda_call0.test
+@hide make -s CONTAINS="passed '3'" lambda_call0.test
 
 
 ## Use case
@@ -24,7 +24,7 @@ typedef void fptr_t(int);
 \ i { <<< "passed '", i, "'" >>>; } @=> fptr_t fptr;
 fptr(4);
 @```  
-@exec make -s CONTAINS="passed '4'" lambda_fptr0.test
+@hide make -s CONTAINS="passed '4'" lambda_fptr0.test
 
 ### As Argument to Functions
 @``` lambda_args0.gw
@@ -34,4 +34,4 @@ fun void test(fptr_t fptr) {
 }
 test(\ i { <<< "passed '", i, "'" >>>; });
 @```  
-@exec make -s CONTAINS="passed '5'" lambda_args0.test
+@hide make -s CONTAINS="passed '5'" lambda_args0.test
index 2fab4d37e1656ac2a4b79b00c6194cb839c389fe..8fd1bb98f7b8704e7c0bf54cf46c291f4ff7d110 100644 (file)
@@ -16,4 +16,4 @@ fun int test_function(int arg) {
 #! or use alternate syntax
 <<< 1 => test_function >>>;
 @```
-@exec make -s function0.test
+@hide make -s function0.test
index ef997e4f2f5eaf2a66e6f18b674515f0006ba08b..46099fb2d747c3005b96a37ce67d6a4ff0c406e6 100644 (file)
@@ -16,4 +16,4 @@ variadic_test(1);
 variadic_test(1, 2);
 variadic_test(1, 2, 3);
 @```
-@exec make -s variadic.test
+@hide make -s variadic.test
index 19cf9f7c2a6f1a63469ba4f98a7919fbd9aa2367..ed1e3ab7e08af609cf43c7c6a259f21b261b1edd 100644 (file)
@@ -15,7 +15,7 @@ enum Optionnal_name {
 };
 <<< zero, one, two >>>;
 @```
-@exec make -s enum0.test
+@hide make -s enum0.test
 
 ## Storage and access Specifiers