RosettaCodeData/Task/Assertions/VBA/assertions.vba

6 lines
75 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Sub test()
Dim a As Integer
a = 41
Debug.Assert a = 42
End Sub