all repos — min @ 499621ee59f09d4d57fcf5b20e3fa3b8af411427

A small but practical concatenative programming language.

Merge pull request #188 from agentofuser/typo

Fabio Cevasco h3rald@h3rald.com
Mon, 21 Nov 2022 06:51:16 +0100
commit

499621ee59f09d4d57fcf5b20e3fa3b8af411427

parent

56a34508437e97ff55776b94d491111183c5f300

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M site/contents/learn-data-types.mdsite/contents/learn-data-types.md

@@ -20,7 +20,7 @@ : A series of characters wrapped in double quotes: "Hello, World!".

quotation (quot) : A list of elements, which may also contain symbols. Quotations can be used to create heterogenous lists of elements of any data type, and also to create a block of code that will be evaluated later on (quoted program). Example: (1 2 3 + \*) dictionary (dict) -: A key/value table. Dictionaries are implemented as an immediately-dequoted quotation, are enclosed in curly braces, and are represented by their symbol definitions. Note that dictionary keys must start with `:`and be followed by a double-quoted string, or a single word (which can be written witbout double quotes). The {#link-module||dict#} provides some operators on dictionaries. +: A key/value table. Dictionaries are implemented as an immediately-dequoted quotation, are enclosed in curly braces, and are represented by their symbol definitions. Note that dictionary keys must start with `:`and be followed by a double-quoted string, or a single word (which can be written without double quotes). The {#link-module||dict#} provides some operators on dictionaries. > %sidebar% > Example