Value v = parser.parse(" [ \n1.20, 234, null, \"John\",true, \n\n\n\t - 33, 234E-34, 0.23E23 ,[33, true], false ]");
System.out.println("" + v.nestedSize() + ": " + v.toJSON());
v = parser.parse("[1.2, 234, null, \"John\", true, -33, 2.34E-32, 0.23, [33, true], false]");
System.out.println("" + v.nestedSize() + ": " + v.toJSON());
v = parser.parse("{\"name\":\"John\", \"data\": [1,2,3,4,5,6]}");
System.out.println("" + v.nestedSize() + ": " + v.toJSON());
v = parser.parse("{\"na$me\":\"John\", \"blah\": {\"silly\": [[[2, [[[[[[[true]]]]]]]]], -55]}}");
System.out.println("" + v.nestedSize() + ": " + v.toJSON());
}
public void testParseNumeric() throws IOException, ParserException {