Imports System
Imports uCalcSoftware
Public Module Program
   Public Sub Main()
      Dim uc As New uCalc()
      Dim intType = uc.DataTypeOf(BuiltInType.Integer_32)
      Console.WriteLine($"The canonical name for Integer_32 is: {intType.Name}")
      
      Dim strType = uc.DataTypeOf(BuiltInType.String)
      Console.WriteLine($"The canonical name for String is: {strType.Name}")
   End Sub
End Module