diff options
| -rw-r--r-- | docs/tutorial/expression.html | 4 | ||||
| -rw-r--r-- | tutorial/expression.md | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/docs/tutorial/expression.html b/docs/tutorial/expression.html index 22da2272..d1a1d32a 100644 --- a/docs/tutorial/expression.html +++ b/docs/tutorial/expression.html @@ -347,10 +347,6 @@ </table> <p>It's past time we covered how the syntax for modifiers works. Remember how I told you you hated learning the order of operations? No? Good. Modifiers bind more tightly than functions, so they are called on their operands before their operands can be used. As the parentheses above suggest, modifiers also associate from left to right, the opposite order as functions. For example, the first expression above is evaluated in the order shown below. First we construct the square function <code><span class='Function'>×</span><span class='Modifier'>˜</span></code>, then compose it with <code><span class='Function'>+</span></code>, and finally apply the result to some arguments.</p> -<pre> <span class='Function'>=</span> <span class='Function'>×</span><span class='Modifier'>˜</span> - <span class='Modifier2'>∘</span><span class='Function'>+</span> - <span class='Number'>3</span> <span class='Number'>4</span> -</pre> <svg viewBox='-213 -34 512 134'> <g font-family='BQN,monospace' font-size='18px'> <rect class='code' stroke-width='1' rx='10' x='-21.5' y='-24' width='129' height='114'/> diff --git a/tutorial/expression.md b/tutorial/expression.md index 018be7a8..78154266 100644 --- a/tutorial/expression.md +++ b/tutorial/expression.md @@ -193,10 +193,6 @@ Primitives ⟨"∘%j%Atop"⟩ --> It's past time we covered how the syntax for modifiers works. Remember how I told you you hated learning the order of operations? No? Good. Modifiers bind more tightly than functions, so they are called on their operands before their operands can be used. As the parentheses above suggest, modifiers also associate from left to right, the opposite order as functions. For example, the first expression above is evaluated in the order shown below. First we construct the square function `ט`, then compose it with `+`, and finally apply the result to some arguments. - = ט - ∘+ - 3 4 - <!--GEN DrawEval "3 ט∘+ 4" --> |
