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

10 lines
111 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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