Imports System
Imports uCalcSoftware
Public Module Program
   Public Sub Main()
      Dim uc As New uCalc()
      Dim myInt = uc.DefineVariable("myInt As Int")
      Dim myIntType = myInt.DataType
      Console.WriteLine($"Variable 'myInt' has type: {myIntType.Name}")
   End Sub
End Module