transcendental-lisp/lisp/paydays.lisp

22 lines
249 B
Common Lisp
Raw Normal View History

(let ((first-payday-day 6)
(leap-year 0)
(days-in-year 365)
(two-weeks 14))
2017-03-03 15:06:49 -05:00
(+
(/
(-
(+
days-in-year
leap-year
)
first-payday-day
)
two-weeks
)
1
)
)
2017-03-03 15:06:49 -05:00