I have a few questions regarding the new Lite-C language.
My first question is: does Lite-C have support for ‘for’ loops and ‘case/switch’ statements? These are some things that I have needed when making an RTS game with 3D GameStudio.
Another question is: Can strings be manipulated like in scripting languages, like Ruby or Python? Instead of using ‘str_cpy’ and ‘str_cat’, can we add strings together with a ‘+’ symbol? This is useful for something like ‘ent_create’.
Like this:
Code:
string extension = “.mdl”;
string filename[25];
…
ent_create(filename + extension, nullvector, null);
One last question, and one that I will ask at the risk of getting my head bitten off… when will it be officially released?

PS: I purchased A6 Commerical, so I will get a free update in A6, right?