RosettaCodeData/Task/Leap-year/Visual-Basic/leap-year-2.vb
2023-07-01 13:44:08 -04:00

7 lines
148 B
VB.net

Sub Main()
'testing the above functions
Dim i As Integer
For i = 1750 To 2150
Debug.Assert IsLeapYear1(i) Eqv IsLeapYear2(i)
Next i
End Sub