Advertisement
Guest User

Lisp programming resources: /emg/

a guest
Jun 13th, 2021
4,777
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. >Programming in Emacs Lisp
  2. https://www.gnu.org/software/emacs/manual/eintr.html (Intro to Programming in Emacs Lisp, A very gentle intro)
  3. https://www.gnu.org/software/emacs/manual/elisp.html (Emacs Lisp Reference Manual)
  4. http://ergoemacs.org/emacs/elisp.html (ErgoEmacs Elisp Guide)
  5. https://github.com/bbatsov/emacs-lisp-style-guide (Emacs Lisp Style Guide)
  6.  
  7. >Programming in Common Lisp
  8. https://gigamonkeys.com/book/ (Practical Common Lisp, Intro to CL)
  9. http://www.paulgraham.com/onlisp.html (On Lisp, Advanced CL techniques)
  10. https://lispcookbook.github.io/cl-cookbook/ (Common Lisp Cookbook)
  11. http://www.lispworks.com/documentation/HyperSpec/Front/ (Common Lisp HyperSpec, CL docs)
  12. http://quickref.common-lisp.net/ (Quickref, Quicklisp library docs)
  13. https://google.github.io/styleguide/lispguide.xml (Common Lisp Style Guide)
  14.  
  15. >Programming in Scheme
  16. https://www.scheme.com/tspl4/ (Scheme Programming Language)
  17. https://mitpress.mit.edu/sites/default/files/sicp/full-text/book/book.html (SICP)
  18. https://srfi.schemers.org (SRFI, Scheme extensions)
  19. #<YOUR-IMPLEMENTATIONS-MANUAL>
  20.  
  21. >Programming in Clojure
  22. https://clojure.org/ (Clojure Website)
  23. https://www.braveclojure.com/clojure-for-the-brave-and-true/ (Clojure for the Brave and True, Intro to Clojure)
  24. https://moocfi.github.io/courses/2014/clojure/ (Functional programming with Clojure)
  25. https://clojuredocs.org/ (Clojure (core) Docs)
  26. https://cljdoc.org/ (Clojure (library) Docs)
  27. https://guide.clojure.style (Clojure Style Guide)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement