Snippets Collections
sudo apt remove --purge emacs-bin-common emacs-el emacs-gtk
CL-USER 9 > (defun x (c)
              (let ((i 4))     ; defining/binding local variable i
                (loop while (< i 10) do
                      (print i)
                      (incf i))))
X

CL-USER 10 > (x :foobar)

4 
5 
6 
7 
8 
9 
NIL
(define (quicksort lst op)
 (if (null? lst)
 lst
 (let* ((one (car lst))
 (left (filter (lambda (x)
 (op x one))
 (cdr lst)))
 (right (filter (lambda (x)
 (not (op x one)))
 (cdr lst))))
 (append (quicksort left op) (list one) (quicksort right op)))))
star

Thu Mar 16 2023 18:21:03 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/57895073/how-remove-emacs-full

#lisp
star

Sat Oct 23 2021 04:22:28 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/6026713/how-do-i-change-emacs-default-font-size-and-font-type

#lisp
star

Wed Oct 20 2021 21:04:55 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/49461861/initialize-counter-variable-in-common-lisp

#lisp
star

Wed Oct 20 2021 20:54:52 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/4882361/which-command-could-be-used-to-clear-screen-in-clisp

#lisp

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension