This commit is contained in:
Laura Brown 2013-09-03 19:13:46 -07:00
commit 74c6df6185
2 changed files with 3 additions and 3 deletions

View file

@ -55,7 +55,7 @@
"February" "February"
1 "January" 1 "January"
2006 2010 2014 2006 2010 2014
"Vancouver"]}] "Sochi" "Torino" "Vancouver"]}]
["06_functions" {"__" [81 ["06_functions" {"__" [81
20 20

View file

@ -40,8 +40,8 @@
"Often you will need to get the keys, but the order is undependable" "Often you will need to get the keys, but the order is undependable"
(= (list __ __ __) (= (list __ __ __)
(sort (keys {2006 "Torino" 2010 "Vancouver" 2014 "Sochi"}))) (sort (keys {2010 "Vancouver" 2006 "Torino" 2014 "Sochi"})))
"You can get the values in a similar way" "You can get the values in a similar way"
(= (list "Sochi" "Torino" __) (= (list __ __ __)
(sort (vals {2006 "Torino" 2010 "Vancouver" 2014 "Sochi"})))) (sort (vals {2006 "Torino" 2010 "Vancouver" 2014 "Sochi"}))))