See Original text in context
method is-leap-year(Dateish: --> Bool)
Returns True
if the year of the Dateish object is a leap year.
say DateTime.new(:year<2016>).is-leap-year; # OUTPUT: «True»say Date.new("1900-01-01").is-leap-year; # OUTPUT: «False»