And a follow up question: what if I want to have a...
# announcements
f
And a follow up question: what if I want to have a Table data structure to get and put data with multiple keys like this:
Copy code
table.get(key1, key2)
table.save(key1, key2, value)

deepTable.get(key1, key2, key3)
deepTable.save(key1, key2, key3, value)
Is there some data format I could use in kotlin? 🤔