Storing dates in Common Lisp
What's the proper way to store dates in Common Lisp? The closest thing I found to an answer is this, which doesn开发者_开发知识库't really seem to cut it for me.
How about ENCODE-UNIVERSAL-TIME
?
(defparameter *my-birth-date* (encode-universal-time 0 0 0 14 2 1984))
If you want to store a date converted to string, you can use the following:
(multiple-value-bind
(s m h d mm y dw dst-p tz) (get-decoded-time)
(format nil "~D\/~D\/~D" date month year))
精彩评论