public void testParser() throws Exception
{
new Parser("// comment\n" + "a=\"who's there?\"; ps -ef;\n" + "ls | \n grep y\n").program();
String p1 = "a=1 \\$b=2 c={closure}\n";
new Parser(p1).program();
new Parser(new Token(Type.ARRAY, p1, (short) 0, (short) 0)).program();
}