Skip to content

Instantly share code, notes, and snippets.

@RayMPerry
Created May 24, 2020 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RayMPerry/6d3d300d21818116c4f871832428bba4 to your computer and use it in GitHub Desktop.
Save RayMPerry/6d3d300d21818116c4f871832428bba4 to your computer and use it in GitHub Desktop.
Leap Year
unit module Leap;
sub is-leap-year ($year) is export {
return True if $_ %% 400;
return False if $_ %% 100;
return True if $_ %% 4;
False;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment