Added dict example to tutorial

This commit is contained in:
Bruce Hill 2017-09-14 04:23:18 -07:00
parent 7c02fe0564
commit 02cda763c5

View File

@ -13,7 +13,7 @@ run file "core.nom"
# Strings: # Strings:
"asdf" "asdf"
".."|This is a multi-line string with a #.. fake comment ".."|This is a multi-line string
|that starts with ".." and includes each indented line that starts with a "|" |that starts with ".." and includes each indented line that starts with a "|"
|until the indentation ends |until the indentation ends
@ -25,6 +25,12 @@ run file "core.nom"
5 5
6,7,8 6,7,8
# Dicts:
dict [["x", 99], ["y", 101]]
dict [..]
["z", 222]
[383, "howdy"]
# Function calls: # Function calls:
say "Hello world!" say "Hello world!"