Merge pull request #188 from agentofuser/typo
Fabio Cevasco h3rald@h3rald.com
Mon, 21 Nov 2022 06:51:16 +0100
1 files changed,
1 insertions(+),
1 deletions(-)
M
site/contents/learn-data-types.md
→
site/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