Xah Talk Show 2021-11-27 Emacs Lisp Tutorial, Writing a Golang Mode from Scratch
- 2021-11-26 emacs go-mode will spin up your d drive. write my own. show how to write a mode from scratch.
(equal '(3 2) (cons 3 (cons 2 nil))) ;; t (equal '(3 2) (list 3 2)) ;; t (equal '( 3 2) (quote (3 2)) ) ;; t