diff --git a/LINQ/LINQ/test/Program.vb b/LINQ/LINQ/test/Program.vb
index cd4a8f3..3529a8a 100644
--- a/LINQ/LINQ/test/Program.vb
+++ b/LINQ/LINQ/test/Program.vb
@@ -1,3 +1,13 @@
-Public Class Program
+Public Module Program
-End Class
+ 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
diff --git a/LINQ/LINQ/test/test.vbproj b/LINQ/LINQ/test/test.vbproj
index f9f36db..f705f5c 100644
--- a/LINQ/LINQ/test/test.vbproj
+++ b/LINQ/LINQ/test/test.vbproj
@@ -44,7 +44,7 @@
On
-
+ test.Program