diff --git a/tutorial/tutorial.wmml b/tutorial/tutorial.wmml index 0643a848c29c53da403a8fae7eb433fa60541b2c..11b018f54d4c9f03673c717d2de30d70a57d5e64 100644 --- a/tutorial/tutorial.wmml +++ b/tutorial/tutorial.wmml @@ -2488,10 +2488,18 @@ the complete list of combinations of types you can use with these operators: <td><tt><i>string</i> * <i>int</i></tt></td><td>string</td><td>This operation will concatenate the string N times. Example: <tt>"foo"*3</tt> will return <tt>"foofoofoo"</tt>.</td> </tr> +<tr> +<td><tt><i>string</i> * <i>float</i></tt></td><td>string</td><td>This operation will concatenate the string X times. Example: <tt>"foo"*2.5</tt> will return <tt>"foofoofo"</tt>.</td> +</tr> + <tr> <td><tt><i>array</i> * <i>int</i></tt></td><td>string</td><td>This operation will concatenate the array N times. Example: <tt>({"foo"})*3</tt> will return <tt>({"foo","foo","foo"})</tt>.</td> </tr> +<tr> +<td><tt><i>array</i> * <i>float</i></tt></td><td>string</td><td>This operation will concatenate the array X times. Example: <tt>({1,2,3})*2.5</tt> will return <tt>({1,2,3,1,2,3,1,2})</tt>.</td> +</tr> + <tr> <td><tt><i>int</i> / <i>int</i></tt></td><td>int</td><td>The right integer divided by the left integer rounded towards minus infinity.</td> </tr>