反转一个列表
用法:
reverse(List1) -> List2
把列表 List1 里的元素反转,并最终返回一个反转后的新列表 List2
lists:reverse([a, b, c, d, e]).