Imports System
Imports uCalcSoftware
Public Module Program
   Public Sub Main()
      Dim uc As New uCalc()
      '// 1. Parse the expression into a reusable object.
      Dim parsedExpr = uc.Parse("100 / 4")
      
      '// 2. Evaluate the pre-parsed object.
      Console.WriteLine($"Result: {parsedExpr.Evaluate()}")
   End Sub
End Module