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

Function Shortcuts

MacroDescriptionExample
funLambda shorthand#'square/1(function square 1)

Syntax Variations:

;; Function reference
#'func/2              ; Local function
#'module:func/2       ; Remote function

;; In higher-order functions
(lists:map #'square/1 '(1 2 3))
(lists:filter #'even?/1 '(1 2 3 4))