对emacs特别的感兴趣,从网上下载了一本《GNU Emacs Lisp 编程入门》电子图书。看了其中的一个例子。
打开emacs编辑器,在一个一个缓冲区中输入如下内容:
(defun multiply-by-seven(number)
"multiply NUMBER by seven."
(interactive "p")
(message "the result is %d" (* 7 number))
)
将光标放在最后一个括号后面,使用C-u 10 M-x multiply-by-seven 回车,在小窗口中显示 the result is 70.
此段代码,是定义一个函数 multiply-by-seven,我也是初学者,先编写这个例子慢慢的进行分析。学习。
阅读(4489) | 评论(0) | 转发(0) |