Imports System Imports uCalcSoftware Public Module Program Public Sub Main() Dim uc As New uCalc() Dim t As New uCalc.Transformer() '// This rule only targets the alphanumeric token 'x'. t.FromTo("x", "value") Dim code = "x = 5; print(""The value of x is..."");" Console.WriteLine(t.Transform(code)) End Sub End Module