Code:
tabl1 = {9,5,8,1,6,0} tabl2 = tabl1 -- make a copy of tabl1 befor sorting Table.Sort(tabl1, nil); -- sort tabl1 result1 = Table.Concat(tabl1, " - ", 1, TABLE_ALL); result2 = Table.Concat(tabl2, " - ", 1, TABLE_ALL); Dialog.Message("Notice", result1.."\r\n"..result2, MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
0-1-5-6-8-9
what sort the copy of the origenal table (tabl2) ?????
what sort tabl2 in my code ?????



Comment