all repos — min @ fd31ed44a5f5471ae854954c95e760a50a8c6286

A small but practical concatenative programming language.

fix typo
Helder S Ribeiro helder@agentofuser.com
Sun, 20 Nov 2022 21:22:44 -0400
commit

fd31ed44a5f5471ae854954c95e760a50a8c6286

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