Small change.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Oly 2021-02-01 17:01:25 +00:00
parent 5f14779f5e
commit aec41bd375
1 changed files with 3 additions and 1 deletions

View File

@ -19,7 +19,9 @@ Basic data
;;characters are backslash escaped ;;characters are backslash escaped
\a \b \c \e \t \c \a \b \c \e \t \c
;;Symbols (named things like function & variable) are just text ;;Symbols (named things like function & variable) are just text
my-var-name my-fn-name my-second-var-etc my-second-fn-etc ;;these are quoted with a ' to stop evaluation, we have not actually defined them yet
;;this stops evaluation
'my-var-name 'my-fn-name 'my-second-var-etc 'my-second-fn-etc
;;hash map or dictonary keys are prefixed with a colon, no need to quote ;;hash map or dictonary keys are prefixed with a colon, no need to quote
:key1 :key2 :key3 :key1 :key2 :key3
;;booleans ;;booleans