reverese function:

Reveres the order of a list. If the first argument is a list, will iterate over all the other arguments and add them to the list if they exists.

Examples:

  • running: (reverese [1, 2, 3, 4]) will give: [4, 3, 2, 1]

  • running: (reverese 1) will return nothing