can anyone explain me how to sort a table whose keys are strings using a custom sorting function ?
It doesn't seem to work (table is not sorted, because the comparator function is not executed).
local t = {}
t["03:05:30"] = 80
t["04:05:21"] = 40
t["01:03:03"] = 20
...
Thanks for any suggestion,
Valerio