Emacs lisp 列表与函数的区别
1、通常我们在使用emacs学习elisp时,先打开一个测试用的文件如lisp.el,这时emacs会自动切换成Emacs-lisp模式如下:
2、列表与函数的区别
在官方手册里有如下内容:
The single apostrophe, ‘, that I put in front of some of the example lists in preceding sections is called a quote:
when it precedes a list, it tells lisp to do nothing with the list, other than take it as it is written. But if there is no quote
preceding a list, the first item of the list is special: it is a command for the computer to obey. (In lisp, these commands
are called functions.)
即左括号前加单引号,表示后面是列表;
左括号前不加单引号,表示后面是函数。括号内第一个元素被当做函数名。
3、lisp语句的执行
参考官方手册有
place your cursor immediately after the right hand parenthesis of the following list and then type
(+ 2 2)
C-x C-e
即将光标放到右括号后,输入C-x C-e 即可执行。1)列表的执行
‘(+ 2 3)
执行结果如下:
(+ 2 3)
执行结果如下:
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。