This commit is contained in:
Ingy döt Net 2013-04-10 16:57:12 -07:00
parent 518da4a923
commit 764da6cbbb
6144 changed files with 83610 additions and 11 deletions

View file

@ -0,0 +1,26 @@
#define std'dictionary'*.
#define std'routines'*.
#define std'collections'*.
#define std'patterns'*.
// --- Program ---
#symbol Program =
[
// 1. Create
#var aMap := Dictionary.
aMap
append &dictionary_key:"key" &content:"foox"
append &dictionary_key:"key" &content:"foo"
append &dictionary_key:"key2" &content:"foo2"
append &dictionary_key:"key3" &content:"foo3"
append &dictionary_key:"key4" &content:"foo4".
(aMap enumerator)~foreach run: anItem =
[
'program'Output << anItem dictionary_key << " : " << anItem content << "%n".
].
// only values
Scan::aMap run: aValue = ('program'Output << avalue << "%n").
].