reverse
reverse v
-- yields a list containing the elements of the list
v
in reverse order.
i1 : reverse {a,b,c,d}
o1 = {d, c, b, a}
o1 : List