Imports System
Imports uCalcSoftware
Public Module Program
   Public Sub Main()
      Dim uc As New uCalc()
      Dim t As New uCalc.Transformer()
      t.uCalc.Description = "My Parent uCalc"
      Dim tokens = t.Tokens
      
      '// Get the parent from the Tokens object
      Dim parent_uc = tokens.uCalc
      
      '// Verify we got the correct parent
      Console.WriteLine(parent_uc.Description)
   End Sub
End Module