by shigemk2

当面は技術的なことしか書かない

対話によるCommon Lisp入門 26 ed その2

前回のやつで、
edでエディタを開くという話だったけども、
"Waiting for Emacs..."をやめるには、
そのバッファを消すか、Emacsを終了させるかすればいい。

[5]> (ed "hoge.l")
Waiting for Emacs...
NIL

作ったファイルを読み込むことも出来るお。

[6]> (load "hoge")

*** - LOAD: A file with name hoge does not exist
The following restarts are available:
ABORT          :R1      Abort main loop
Break 1 [7]> :a
[8]> (load "hoge.l")
;; Loading file hoge.l ...
HOGE
(1 2)
;; Loaded file hoge.l
T