In Lua and Python it is possible to create empty arrays/tables, without defining their size, and then add things in later.
Is there a way to do this in Processing?>>>--(lua)>>>table = {}>>>table[#table + 1] = "A new value">>>print(table[1])A new value
>>>#python>>>table = []>>>table.append("A new value")>>>table['A new value']
1