by kornalius » Sep 8, 2004 @ 12:04am
Thanks guys for the kind words. I really appreciate it. I will unfortunately delay for a day today's pre-release. I am working on something really cool. And I am making an important internal change that will simplify coding internally and make the whole program even more stable. And this new feature is...
Matrices:
a$ = [10, 20, [10, 20], "string"];
a$ = a$ + [1, 2, [1, 2], " append"];
a$ = a$ + 5;
ShowMessage(a$[0]); // 16
ShowMessage(a$[1]); // 27
ShowMessage(a$[2][0]); // 16
ShowMessage(a$[2][1]); // 27
ShowMessage(a$[3]); // "g append"
This way it will allow for really cool data manipulation. Matrices becomes array within PPL. Matrices will allow for sub-arrays and strings.