RosettaCodeData/Task/Boolean-values/VBA/boolean-values.vba

10 lines
111 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
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