You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Darwinism/LINQ/LINQ/test/Program.vb

14 lines
310 B

Public Module Program
Sub Main()
Call parserTest()
End Sub
Sub parserTest()
Dim script = "from x as double in `http://aaa.txt` where x > 5 select x ^ 2 # this is comment text"
Dim tokens = LINQ.Language.GetTokens(script).ToArray
Pause()
End Sub
End Module