“Lisp note”的版本间的差异
跳到导航
跳到搜索
docker>Evan |
|||
(未显示同一用户的8个中间版本) | |||
第27行: | 第27行: | ||
https://lisp-lang.org/learn/first-steps | https://lisp-lang.org/learn/first-steps | ||
+ | |||
+ | Lisp编程语族已经演变出许多种方言。现代最著名的通用编程语种是Clojure、Common Lisp和Scheme | ||
+ | |||
+ | ==emacs lisp == | ||
+ | |||
+ | https://www.gnu.org/software/emacs/manual/html_node/elisp/ | ||
+ | |||
+ | [https://zhuanlan.zhihu.com/p/201062516 最好的Emacs Lisp免费教程] | ||
+ | |||
+ | [https://smacs.github.io/elisp/ Emacs Lisp 简明教程] | ||
=see also= | =see also= | ||
− | + | [https://my.oschina.net/u/3857593/blog/5441920 关于Lisp的一己之见] | |
第45行: | 第55行: | ||
[https://blog.csdn.net/lantianjialiang/article/details/17921591 如何在Linux上安装和配置commo lisp环境] | [https://blog.csdn.net/lantianjialiang/article/details/17921591 如何在Linux上安装和配置commo lisp环境] | ||
+ | |||
+ | [https://www.zhihu.com/question/24447820 Lisp 语言优点那么多,为什么国内很少运用?] | ||
+ | |||
+ | [https://zhuanlan.zhihu.com/p/33875667 Lisp语言到底神奇在哪里] | ||
+ | |||
+ | [https://zhuanlan.zhihu.com/p/50463116 Lisp 是怎么成为上帝的编程语言的] | ||
− | [[category:lisp]] | + | [[category:lisp]] [[category:devops]] |
2022年2月16日 (三) 01:26的最新版本
install
#debian sudo apt-get install sbcl #run evan@kalipc:~/ssh/intra$ sbcl This is SBCL 1.4.12.debian, an implementation of ANSI Common Lisp. More information about SBCL is available at <http://www.sbcl.org/>. SBCL is free software, provided as is, with absolutely no warranty. It is mostly in the public domain; some portions are provided under BSD-style licenses. See the CREDITS and COPYING files in the distribution for more information. * (format t "Hello, world!") Hello, world! NIL
https://lisp-lang.org/learn/first-steps
Lisp编程语族已经演变出许多种方言。现代最著名的通用编程语种是Clojure、Common Lisp和Scheme
emacs lisp
https://www.gnu.org/software/emacs/manual/html_node/elisp/