If you are done with the Linker, take a look on advanced Datatypes.
This is the way to make programming easier and faster (yet you do the work) :-)
For example those from
Stan Durham are very efficient.
They beat the PB-Stack and Que Objects by far.
I think of a Variable that I can give two elements, for example a Numeric and a string datattype.
Then i can sort by the number or by the string. But the Pairs stay together.
Multi-Dimensional constructions of Variables in high speed is a feature that most other languages
do not yet have because they most often use Databases for this.
Which is not the fastest way.
Currently you can make multideminensional Arrays, in all languages - but only with one Datatype for the whole Array.
If you want to make an Array with different Datataypes your Options are much more limited.
This is where Improvement is possible.
The others do not do it because its difficult.
Examples.
Dim A(1 to 99 as LONG,STRING) ' Make a Array with connected Pairs of a Number and a String
' This can be improved to a Table.
Dim A(1 to 99 as LONG,STRING,STRING,Byte,LONG,STRING)
Now we have 99 Rows and several Columns (Excel-like).
Modifying the Code from Stan Durham (see above) i think it should be possible.