Lua Sort

local t = {1, 2, 3, 4, 5};

table.sort(t, function(a, b) return a < b end);
Beautiful Booby