Created
August 2, 2015 17:05
-
-
Save sanatgersappa/43d227b33d97f39f042d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(def people [ | |
{:Name "Bob", :Age 31} | |
{:Name "John" :Age 42} | |
{:Name "Michael" :Age 17} | |
{:Name "Jenny" :Age 26} | |
] | |
) | |
(println people) | |
(println (sort-by :Age people)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment