RosettaCodeData/Task/Assertions/VBA/assertions.vba

6 lines
75 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
Sub test()
Dim a As Integer
a = 41
Debug.Assert a = 42
End Sub