RosettaCodeData/Task/Doomsday-rule/APL/doomsday-rule.apl
2023-07-01 13:44:08 -04:00

13 lines
409 B
APL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

weekday{⎕IO1
days'Sunday' 'Monday' 'Tuesday' 'Wednesday' 'Thursday' 'Friday' 'Saturday'
leap4 720=4 100 400|
ld4 7 1 4 2 6 4 1 5 3 7 5
nd3 7 7 4 2 6 4 1 5 3 7 5
y m d
cy÷100 r100|y
sr÷12 t12|r
can7|2+5×4|c
doom7|s+t+can+t÷4
anchorm(1+leap y)nd ld
(1+7|7+doom+d-anchor)days
}