Skip to content

Instantly share code, notes, and snippets.

@amitrathore
Created May 1, 2010 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amitrathore/386563 to your computer and use it in GitHub Desktop.
Save amitrathore/386563 to your computer and use it in GitHub Desktop.
(def the-users [{:login "deep" :first "Deepthi" :last "Rathore"}
{:login "adi" :first "Aditya" :last "Rathore"}
{:login "siva" :first "Siva" :last "Jag"}
{:login "punit" :first "Punit" :last "Rathore"}
{:login "nan" :first "Nanditha" :last "Sunder"}])
(def the-expenses [{:amount 10.0 :merchant "amazon" :category "book" :user "deep"}
{:amount 20.0 :merchant "amazon" :category "toy" :user "adi"}
{:amount 30.0 :merchant "burger joint" :category "meal" :user "siva"}
{:amount 40.0 :merchant "ubuntu" :category "software" :user "punit"}
{:amount 50.0 :merchant "sephora" :category "cosmetics" :user "nan"}
{:amount 60.0 :merchant "french laundry" :category "meal" :user "deep"}
{:amount 70.0 :merchant "nps" :category "school" :user "adi"}
{:amount 80.0 :merchant "apple" :category "software" :user "siva"}
{:amount 90.0 :merchant "crossword" :category "book" :user "punit"}
{:amount 100.0 :merchant "apple" :category "software" :user "nan"}
{:amount 110.0 :merchant "alibris" :category "book" :user "deep"}
{:amount 120.0 :merchant "toys r us" :category "toy" :user "adi"}])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment