Example:

  1. Sub Main

    1. Dim Y As Integer

      Y = 25

      Print Y

      If VarType(Y) = 2 Then

      1. X = CStr(Y)         'converts Y To a Str

        X = X + "hello"         'It is now possible to combine Y with strings

        Print X

      End If

    End Sub