RosettaCodeData/Task/Boolean-values/VBA/boolean-values.vba
2023-07-01 13:44:08 -04: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