Advertisement
Guest User

Untitled

a guest
Nov 27th, 2011
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; I think the people who wrote the Java date libraries were under the influence
  2. ; of something that'll get you hard time in Federal prison
  3. (defn sql->date [d]
  4.   (date-time (+ 1900 (.getYear d))
  5.              (+ 1 (.getMonth d))
  6.              (.getDate d)))
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement