mirror of
https://github.com/correl/elm.git
synced 2024-11-16 19:19:28 +00:00
6 lines
129 B
Text
6 lines
129 B
Text
module Leap exposing (..)
|
|
|
|
|
|
isLeapYear : Int -> Bool
|
|
isLeapYear year =
|
|
year % 4 == 0 && (year % 100 /= 0 || year % 400 == 0)
|