mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 15:24:09 +03:00
Merge pull request #2927 from AdamFrey/patch-1
[edn] Fix incorrect format for EDN symbols
This commit is contained in:
commit
b88f112e37
@ -44,13 +44,13 @@ false
|
||||
:cheese
|
||||
:olives
|
||||
|
||||
; Symbols are used to represent identifiers. They start with #.
|
||||
; Symbols are used to represent identifiers.
|
||||
; You can namespace symbols by using /. Whatever precedes / is
|
||||
; the namespace of the name.
|
||||
#spoon
|
||||
#kitchen/spoon ; not the same as #spoon
|
||||
#kitchen/fork
|
||||
#github/fork ; you can't eat with this
|
||||
; the namespace of the symbol.
|
||||
spoon
|
||||
kitchen/spoon ; not the same as spoon
|
||||
kitchen/fork
|
||||
github/fork ; you can't eat with this
|
||||
|
||||
; Integers and floats
|
||||
42
|
||||
|
Loading…
Reference in New Issue
Block a user