Imports System
Imports uCalcSoftware
Public Module Program
   Public Sub Main()
      Dim uc As New uCalc()
      Console.WriteLine("Items with the Prefix property")
      Console.WriteLine("------------------------------")
      For Each item In uc.GetItems(ItemIs.Prefix)
         Console.WriteLine(item.Name)
      Next
      
      Console.WriteLine("")
      Console.WriteLine("Different versions of the + operator")
      Console.WriteLine("------------------------------------")
      For Each item In uc.GetItems("+")
         Console.WriteLine(item.Text)
      Next
   End Sub
End Module