RosettaCodeData/Task/Boolean-values/VBA/boolean-values.vba
2019-09-12 10:33:56 -07:00

9 lines
111 B
Text

Dim a As Integer
Dim b As Boolean
Debug.Print b
a = b
Debug.Print a
b = True
Debug.Print b
a = b
Debug.Print a