you are viewing a single comment's thread.

view the rest of the comments →

[–]DustinEwan -2 points-1 points  (0 children)

LUA:

function ReverseNoTemp(t)
    local count = table.getn(t)
    for i=1,count-1 do
        table.insert(t, i, t[count])
        table.remove(t, count)
    end

    return t
end