I have a 1D array of u8 and I want to write a "shuffle" proc to shuffle it like a deck of cards. As a stepping stone to this I tried something simpler:
proc shuffleArr(arr as addr of u8) arr[2] = 99 'just to see if I can do ANYTHING with the passed array endprocThis doesn't compile:
'arr' is a scalar variable, not an array or STRING; remove the index
Almost certainly user error on my part, but not clear how to proceed.
