Skip to content

Instantly share code, notes, and snippets.

@rexcfnghk
Last active March 22, 2021 04:41
Show Gist options
  • Save rexcfnghk/09b2eab5d51a7a44b46827c5b56ac528 to your computer and use it in GitHub Desktop.
Save rexcfnghk/09b2eab5d51a7a44b46827c5b56ac528 to your computer and use it in GitHub Desktop.
isLeapYear :: Int -> Bool
isLeapYear year =
if year `mod` 4 == 0
then
if year `mod` 100 == 0
then
if year `mod` 400 == 0
then True
else False
else True
else False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment