From 86909d830ace351e98b7464ec51e4240f0c025ab Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Mon, 22 Dec 2025 14:26:18 -0800 Subject: [PATCH] Updated Lists (markdown) --- Lists.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Lists.md b/Lists.md index c3cc673..11c6788 100644 --- a/Lists.md +++ b/Lists.md @@ -190,6 +190,14 @@ The **make text from list** block joins a list into a single text using a delimi In the above example, a new text is returned with the value: "311-555-2368". +# Reversing a list + +The **reverse** block makes a new list with the same items as the connected list, but in the opposite order. For example, these blocks: + +![reverse list](https://github.com/user-attachments/assets/c20d6f7c-9e24-4aea-85be-a7d788c09e93) + +Will make the list `flipped` contain "c", "b", and "a" in that order. + # Related Blocks ## Printing a list @@ -209,11 +217,3 @@ The [for-each block](Loops#for-each) in the Control category performs an operati This does not remove the items from the original list. See also the examples of the [loop termination blocks](Loops#loop-termination-blocks). - -# Reversing a list - -The **reverse** block makes a new list with the same items as the connected list, but in the opposite order. For example, these blocks: - -![reverse list](https://github.com/user-attachments/assets/c20d6f7c-9e24-4aea-85be-a7d788c09e93) - -Will make the list `flipped` contain "c", "b", and "a" in that order. \ No newline at end of file