transcendental-lisp/lisp/paydays.lisp

12 lines
221 B
Common Lisp
Raw Normal View History

(let ((*first-payday-day* 6)
(*leap-year* 0)
(*days-in-year* 365)
(*two-weeks* 14))
(+ 1
(/ (- (+ *days-in-year*
*leap-year*)
*first-payday-day*)
*two-weeks*))
)