12-08-2020, 01:59 PM
ZX Basic now supports passing array as parameters!
If you don't use ByRef it will be enforced anyway.

Code:
SUB SelectionSort (ByRef SortArray() as String)
{Code}
END sub
If you don't use ByRef it will be enforced anyway.