$href = { value => "some data", next => { value => "more data", next => { value => "still more", next => undef }, }, }; #### $aref = [ "some data", [ "more data", [ "still more", undef ], ], ];