Imports System
Imports uCalcSoftware
Public Module Program
   Public Sub Main()
      Dim uc As New uCalc()
      '// Note: Some items in this list (like bool, or int*) appear more than once or out of chronological
      '// order because they are aliases (like bool, which is also an alias for boolean)
      Console.WriteLine("Defined Functions:")
      For Each item In uc.GetItems(ItemIs.Function)
   Console.WriteLine($" - {item.Name}")
         Next
      End Sub
   End Module