Example - Sin Function

Sub Main()
   Dim pi, rad, x
   pi = 4 * Atn(1)
   rad = 90 * (pi/180)
   x = Sin(rad)
   MsgBox x
End Sub