Imports System
Imports uCalcSoftware
Public Module Program
   Public Sub Main()
      Dim uc As New uCalc()
      Dim t = uc.NewTransformer()
      t.Str("a b c d e f")
      t.FromTo("{ a | d }", "xy")
      
      Console.WriteLine(t)
      Console.WriteLine($"Length: {t.StrLength()}")
      Console.WriteLine("")
      Console.WriteLine(t.Transform())
      Console.WriteLine($"Length: {t.StrLength()}")
   End Sub
End Module