Convert seconds to compound duration: Difference between revisions

Content added Content deleted
m (Add actual function calls)
mNo edit summary
Line 942: Line 942:


=={{header|Common Lisp}}==
=={{header|Common Lisp}}==
<lang lisp>(defconstant +seconds-in-minute* (* 60))
<lang lisp>(defconstant +seconds-in-minute* 60)
(defconstant +seconds-in-hour* (* 60 +seconds-in-minute*))
(defconstant +seconds-in-hour* (* 60 +seconds-in-minute*))
(defconstant +seconds-in-day* (* 24 +seconds-in-hour*))
(defconstant +seconds-in-day* (* 24 +seconds-in-hour*))