RosettaCodeData/Task/Leap-year/Visual-Basic/leap-year-2.vb

8 lines
148 B
VB.net
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
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