------------------ '' Failed to parse! ------------------ '({ 1, 2, "three", 0, ({ "internal", "array", 0, }), "end", })' produced the following structure: [ '1', '2', 'three', '0', [ 'internal', 'array', '0' ], 'end' ] ------------------ '1' produced the following structure: '1' ------------------ '"This is \"quoted\" dude"' produced the following structure: 'This is "quoted" dude' ------------------ '({})' produced the following structure: [] ------------------ '({({}),({})})' produced the following structure: [ [], [] ] ------------------ '({"wow",({1}),"bob",({1}),"cool"})' produced the following structure: [ 'wow', [ '1' ], 'bob', [ '1' ], 'cool' ] ------------------ '{{"cool",1,subhash=>{{b=>"c",1=>2}},a=>({1,2,3,{{}},}),}}' produced the following structure: { 'cool' => '1', 'a' => [ '1', '2', '3', {} ], 'subhash' => { '1' => '2', 'b' => 'c' } } ------------------ '({what=>a=>mess=>this=>all=>"is"})' produced the following structure: [ 'what', 'a', 'mess', 'this', 'all', 'is' ] ------------------ '({what=>=>=>is=>=>=>the=>=>=>point=>=>=>of=>=>=>it=>=>=>"all?",,,})' produced the following structure: [ 'what', 'is', 'the', 'point', 'of', 'it', 'all?' ]