RosettaCodeData/Task/Assertions/VBA/assertions.vba

6 lines
75 B
Plaintext

Sub test()
Dim a As Integer
a = 41
Debug.Assert a = 42
End Sub