I didn't find in the internet something that answers specifically my question.
I have a hash as follows:
hash = {[1111, 4, 20]}
And i want to push another array ([3333, 2, 70]
) to that hash to get something like:
hash = {[1111, 4, 20], [3333, 2, 70]}
How can achieve this ?
Thanks!