From 485f9b1af138d914bf46160ab87a021b900441d7 Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Sun, 1 Nov 2020 14:37:51 -0500 Subject: Add expression diagram for one part of base decoding --- docs/tutorial/list.html | 47 +++++++++++++++++++++++++++++++++++++++++++++++ tutorial/list.md | 5 +++++ 2 files changed, 52 insertions(+) diff --git a/docs/tutorial/list.html b/docs/tutorial/list.html index 13760cbf..9a50669a 100644 --- a/docs/tutorial/list.html +++ b/docs/tutorial/list.html @@ -278,6 +278,53 @@ 9

Lot of functions up there. Notice how I need to use parentheses for the left argument of a function if it's compound, but never for the right argument, and consequently never with a one-argument function.

+ + + + +´ (24) × "1001"-'0' + + + + + + + + + + + + + + + '0' + - + "1001" + × + 4 + + + 2 + + ´ + + + + + '0' + - + "1001" + × + 4 + + + 2 + + ´ + + + + + + +

Representing our ASCII statement as a list of lists, we convert each digit to a number as before:

↗️
    '0' -˜ "01001110""01100101""01110010""01100100""00100001"
 ⟨ ⟨ 0 1 0 0 1 1 1 0 ⟩ ⟨ 0 1 1 0 0 1 0 1 ⟩ ⟨ 0 1 1 1 0 0 1 0 ⟩ ⟨ 0 1 1 0 0 1 0 0 ⟩ ⟨ 0 0 1 0 0 0 0 1 ⟩ ⟩
diff --git a/tutorial/list.md b/tutorial/list.md
index 275863d0..671cef27 100644
--- a/tutorial/list.md
+++ b/tutorial/list.md
@@ -182,6 +182,11 @@ Now we'd like to generate that list `8‿4‿2‿1` instead of writing it out, p
 
 Lot of functions up there. Notice how I need to use parentheses for the left argument of a function if it's compound, but never for the right argument, and consequently never with a one-argument function.
 
+
+
 Representing our ASCII statement as a list of lists, we convert each digit to a number as before:
 
         '0' -˜ "01001110"‿"01100101"‿"01110010"‿"01100100"‿"00100001"
-- 
cgit v1.2.3