As a programmer, I'm used to things in C# like generics, etc.
I can build an object that is a collection of complex objects.
Example
<pre 100>
List<People>()
{
ID=Int
Name = String;
Age=Int;
List<Chats>
{
ChatID=Int;
ChatText=String;
}
}
</pre>
From here I can populate it on start, and then access pretty quick.
Get me person 12123412334 and a chat with id 2312213. I can add as many chats as I want to a particular person.
How do you implement something like this in C2? I would assume it would require Functions, Arrays and Dictionaries.
Mind you I don't know what the equiv of this is in JS, Python, Ruby or Java or in C++ for that matter.