Imports System
Imports uCalcSoftware
Public Module Program
   Public Sub Main()
      Dim uc As New uCalc()
      
      '// This example makes the # character behave the same way as quotes
      uc.ExpressionTokens.Add("#([^#]*)#", TokenType.Literal, "", 1).DataType = uc.DataTypeOf("String")
      Console.WriteLine(uc.EvalStr("#Hello # + #World#"))
   End Sub
End Module