Browsing through some online uLisp resources I came across a uLisp cheat sheet. It’s in draft and a work in progress, so it’s still unfinished and incomplete.
uLisp cheat sheet
That’s very cool.
Note that you can also print your own cheat sheet from uLisp’s internal documentation with:
(defun cheat-sheet ()
(mapc
#'(lambda (x) (let ((d (documentation x))) (when d (format t "~a~%~%" d))))
(sort (apropos-list "") #'(lambda (x y) (string< (string x) (string y)))))
nothing)
although it’s in alphabetical order rather than grouped by topic.