forked from pifty/tutes-dump
Replace escape <,> with <, >
for i in *.html.docuwiki; do perl -pi -e "s/>/>/g" $i; done for i in *.html.docuwiki; do perl -pi -e "s/</</g" $i; done
This commit is contained in:
@@ -32,20 +32,20 @@ By default ECL starts up in interactive mode. Log into SDF host //miku// and typ
|
||||
under certain conditions; see file 'Copyright' for details.
|
||||
Type :h for Help.
|
||||
Top level.
|
||||
>
|
||||
>
|
||||
|
||||
The default ECL prompt is ">". Enter Common-Lisp commands in the usual way:
|
||||
The default ECL prompt is ">". Enter Common-Lisp commands in the usual way:
|
||||
|
||||
> (+ 1 2 3)
|
||||
> (+ 1 2 3)
|
||||
6
|
||||
|
||||
> (* 4 5)
|
||||
> (* 4 5)
|
||||
20
|
||||
|
||||
> (format t "hello SDF~&")
|
||||
> (format t "hello SDF~&")
|
||||
hello SDF
|
||||
NIL
|
||||
>
|
||||
>
|
||||
|
||||
In-line help is available ; type :h for options. The debugger can be entered using "(break)" ; once entered typed :h to see options. To exit the ECL interactive session type ":exit" .
|
||||
|
||||
@@ -55,7 +55,7 @@ To use ECL as a script executor (ie. CGI) the //-shell// and/or //-eval// option
|
||||
|
||||
ex: hello.lsp
|
||||
|
||||
% echo '(format t "~&Hello SDF~&")' > hello.lsp
|
||||
% echo '(format t "~&Hello SDF~&")' > hello.lsp
|
||||
|
||||
% ecl -norc -script hello.lsp
|
||||
Hello SDF
|
||||
@@ -125,7 +125,7 @@ The following outlines the process, using the //ecl-readline// module (adds GNU
|
||||
(asdf:operate 'asdf:load-op 'ecl-readline)
|
||||
(ecl-readline::enable)
|
||||
|
||||
The next time you startup ECL it will compile the ecl-readline module and launch an interactive session. With ecl-readline enabled the default ECL prompt is "//CL-USER[n]>//" and you should then be able to use Emacs-style command editing and history recall. If you don't like the provided prompt you can change it by editing the //ecl-readline.lisp// file.
|
||||
The next time you startup ECL it will compile the ecl-readline module and launch an interactive session. With ecl-readline enabled the default ECL prompt is "//CL-USER[n]>//" and you should then be able to use Emacs-style command editing and history recall. If you don't like the provided prompt you can change it by editing the //ecl-readline.lisp// file.
|
||||
|
||||
===== Customizations =====
|
||||
|
||||
|
||||
Reference in New Issue
Block a user