Imports System
Imports uCalcSoftware
Public Module Program
   Public Sub Main()
      Dim uc As New uCalc()
      Dim t As New uCalc.Transformer()
      t.FromTo("{@Number}", "FOUND")
      
      '// The '2' in 'var2' and the '100' in the string should NOT match
      Console.WriteLine(t.Transform("var2 = ""count is 100"" + 50"))
   End Sub
End Module