IsLeapYearIsLeapYear#func IsLeapYear(year int) boolDetermine whether a leap year:gtime.IsLeapYear(2020) // truegtime.IsLeapYear(2021) // falseCopy