From e5b583cfec589988ce980aef7366308a6321ff8e Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Fri, 30 Oct 2020 18:43:11 -0400 Subject: Remove superceded code block showing evaluation order --- docs/tutorial/expression.html | 4 ---- tutorial/expression.md | 4 ---- 2 files changed, 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 @@

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
-
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 - -- cgit v1.2.3