Merge pull request #57 from bobwilliams/master

rearranging map keys to prove sort function
This commit is contained in:
Colin Jones 2013-09-18 06:40:33 -07:00
commit 7718ae4d26

View File

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