This commit is contained in:
artegoser 2023-12-27 16:38:59 +00:00
parent 8f681c847d
commit ddce38764b
4 changed files with 10 additions and 8 deletions

View file

@ -344,9 +344,10 @@ false
<tr><td><code>&amp;&amp;</code></td><td>Left to Right</td><td>logical_and</td><td></td></tr> <tr><td><code>&amp;&amp;</code></td><td>Left to Right</td><td>logical_and</td><td></td></tr>
<tr><td><code>||</code></td><td>Left to Right</td><td>logical_or</td><td></td></tr> <tr><td><code>||</code></td><td>Left to Right</td><td>logical_or</td><td></td></tr>
<tr><td><code>..</code></td><td>Left to Right</td><td>range</td><td></td></tr> <tr><td><code>..</code></td><td>Left to Right</td><td>range</td><td></td></tr>
<tr><td><code>?:</code></td><td>Left to Right</td><td>ternary</td><td></td></tr> <tr><td><code>?:</code></td><td>Right to Left</td><td>ternary</td><td></td></tr>
<tr><td><code>=</code> <code>:=</code> <code>+=</code> <code>-=</code> <code>*=</code> <code>/=</code> <code>^=</code> <code>%=</code></td><td>Right to Left</td><td>assign</td><td>✅?</td></tr> <tr><td><code>=</code> <code>:=</code> <code>+=</code> <code>-=</code> <code>*=</code> <code>/=</code> <code>^=</code> <code>%=</code></td><td>Right to Left</td><td>assign</td><td></td></tr>
<tr><td><code>,</code></td><td>Left to Right</td><td>comma</td><td></td></tr> <tr><td>await yield</td><td>Right to Left</td><td>await_yield</td><td></td></tr>
<tr><td><code>,</code></td><td>None</td><td>comma</td><td></td></tr>
</tbody></table> </tbody></table>
</div><div style="break-before: page; page-break-before: always;"></div><h1 id="examples"><a class="header" href="#examples">Examples</a></h1> </div><div style="break-before: page; page-break-before: always;"></div><h1 id="examples"><a class="header" href="#examples">Examples</a></h1>
<p>This is chapter about how the code in SymboScript looks.</p> <p>This is chapter about how the code in SymboScript looks.</p>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -191,9 +191,10 @@
<tr><td><code>&amp;&amp;</code></td><td>Left to Right</td><td>logical_and</td><td></td></tr> <tr><td><code>&amp;&amp;</code></td><td>Left to Right</td><td>logical_and</td><td></td></tr>
<tr><td><code>||</code></td><td>Left to Right</td><td>logical_or</td><td></td></tr> <tr><td><code>||</code></td><td>Left to Right</td><td>logical_or</td><td></td></tr>
<tr><td><code>..</code></td><td>Left to Right</td><td>range</td><td></td></tr> <tr><td><code>..</code></td><td>Left to Right</td><td>range</td><td></td></tr>
<tr><td><code>?:</code></td><td>Left to Right</td><td>ternary</td><td></td></tr> <tr><td><code>?:</code></td><td>Right to Left</td><td>ternary</td><td></td></tr>
<tr><td><code>=</code> <code>:=</code> <code>+=</code> <code>-=</code> <code>*=</code> <code>/=</code> <code>^=</code> <code>%=</code></td><td>Right to Left</td><td>assign</td><td>✅?</td></tr> <tr><td><code>=</code> <code>:=</code> <code>+=</code> <code>-=</code> <code>*=</code> <code>/=</code> <code>^=</code> <code>%=</code></td><td>Right to Left</td><td>assign</td><td></td></tr>
<tr><td><code>,</code></td><td>Left to Right</td><td>comma</td><td></td></tr> <tr><td>await yield</td><td>Right to Left</td><td>await_yield</td><td></td></tr>
<tr><td><code>,</code></td><td>None</td><td>comma</td><td></td></tr>
</tbody></table> </tbody></table>
</div> </div>
</main> </main>