Example - CStr Function

Sub Main()
    Dim Y As Integer
    Y = 25
    Print Y
    If VarType(Y) = 2 Then
        X = CStr(Y)          'converts Y To a String (Str)
        X = X + "hello"      'It is now possible to combine Y with strings
        MsgBox X
    End If
End Sub