From 84039bf5248090b30845c1106f45a182e4aee901 Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Sun, 14 Mar 2021 20:55:07 -0400 Subject: =?UTF-8?q?Walk=20through=20one=20of=20the=20=E2=88=98=20expressio?= =?UTF-8?q?ns?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/tutorial/expression.html | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/tutorial') diff --git a/docs/tutorial/expression.html b/docs/tutorial/expression.html index 6be69727..ee088ee4 100644 --- a/docs/tutorial/expression.html +++ b/docs/tutorial/expression.html @@ -347,6 +347,7 @@ +

For example, the first expression 3 ט+ 4 expands to ט 3 + 4. Summing up, we get ט 7, which from the previous section is 7 × 7, or 49.

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 those operands can be used as arguments. As the parentheses above suggest, modifiers 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.

-- cgit v1.2.3