Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

reverse 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: (reverse [1, 2, 3, 4]) will give: [4, 3, 2, 1]

  • running: (reverse 1) will return nothing