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

Documentation

Module Documentation:

(defmodule mymod
  (doc "This module does amazing things."))

Function Documentation:

(defun add (x y)
  "Add two numbers together.

  Returns the sum of x and y."
  (+ x y))

Access Documentation:

;; In shell
(doc 'mymod)              ; Module docs
(doc 'mymod 'add)         ; Function docs
(doc 'mymod 'add 2)       ; Specific arity