I have a table that looks like
{
a = 1,
b = 2,
c = 3,
}
And I'd like to move this table, while retaining all its values, into a sub-table within the existing table, so it looks like:
{
letters = {
a = 1,
b = 2,
c = 3,
},
otherStuff = {}
}
Is there any easy way to do this? Thanks!