commit 25fe1d35d7dbbb601fa63d5b412455a443663730
parent af363081742e45169c9dadb171f026b172c48a4a
Author: mpizzzle <m@michaelpercival.xyz>
Date: Thu, 23 Feb 2023 16:17:40 +0000
hash -> lamp
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/thoughts/dyalog-scan.md b/content/thoughts/dyalog-scan.md
@@ -94,7 +94,7 @@ The missing ingredient is that each intermediate is equivalent to a minus reduct
For example, applying a minus reduction to the first four elements yields the fourth element of the minus scan:
{{< highlight APL "linenos=true, style=catppuccin-mocha" >}}
--/ 3 6 1 8 # i.e. (3-(6-(1-8)))
+-/ 3 6 1 8 ⍝ i.e. (3-(6-(1-8)))
⍝ ¯10
{{< /highlight >}}