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.
|
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
|