Example - Str Function

Sub Main()
   Dim a
   a = -1
   MsgBox "Num = " & Str(a)
   MsgBox "Abs(Num) =" & Str(Abs(a))
End Sub