1 | % -*- mode: latex; -*- |
---|
2 | % http://en.wikibooks.org/wiki/LaTeX/ |
---|
3 | \documentclass[10pt]{book} |
---|
4 | \usepackage{abcl} |
---|
5 | |
---|
6 | \begin{document} |
---|
7 | \title{A Manual for Armed Bear Common Lisp} |
---|
8 | \date{October 2, 2011} |
---|
9 | \author{Mark~Evenson, Erik~Huelsmann, Alessio~Stallo, Ville~Voutilainen} |
---|
10 | |
---|
11 | \maketitle |
---|
12 | |
---|
13 | \chapter{Introduction} |
---|
14 | |
---|
15 | Armed Bear is a mostly conforming implementation of the ANSI Common |
---|
16 | Lisp standard. This manual documents the Armed Bear Common Lisp |
---|
17 | implementation for users of the system. |
---|
18 | |
---|
19 | \subsection{Version} |
---|
20 | This manual corresponds to abcl-0.28.0, as yet unreleased. |
---|
21 | |
---|
22 | \chapter{Running} |
---|
23 | |
---|
24 | ABCL is packaged as a single jar file usually named either |
---|
25 | ``abcl.jar'' or something like``abcl-0.28.0.jar'' if you are using a |
---|
26 | versioned package from your system vendor. This byte archive can be |
---|
27 | executed under the control of a suitable JVM by using the ``-jar'' |
---|
28 | option to parse the manifest, and select the named class |
---|
29 | (org.armedbear.lisp.Main) for excution: |
---|
30 | |
---|
31 | \begin{listing-shell} |
---|
32 | cmd$ java -jar abcl.jar |
---|
33 | \end{listing-shell} |
---|
34 | |
---|
35 | N.b. for the proceeding command to work, the ``java'' executable needs |
---|
36 | to be in your path. |
---|
37 | |
---|
38 | To make it easier to facilitate the use of ABCL in tool chains (such as |
---|
39 | SLIME) the invocation is wrapped in a Bourne shell script under UNIX |
---|
40 | or a DOS command script under Windows so that ABCL may be executed |
---|
41 | simply as: |
---|
42 | |
---|
43 | \begin{listing-shell} |
---|
44 | cmd$ abcl |
---|
45 | \end{listing-shell} |
---|
46 | |
---|
47 | \section{Options} |
---|
48 | |
---|
49 | ABCL supports the following options: |
---|
50 | |
---|
51 | \begin{verbatim} |
---|
52 | --help |
---|
53 | Displays this message. |
---|
54 | --noinform |
---|
55 | Suppresses the printing of startup information and banner. |
---|
56 | --noinit |
---|
57 | Suppresses the loading of the '~/.abclrc' startup file. |
---|
58 | --nosystem |
---|
59 | Suppresses loading the 'system.lisp' customization file. |
---|
60 | --eval <FORM> |
---|
61 | Evaluates the <FORM> before initializing REPL. |
---|
62 | --load <FILE> |
---|
63 | Loads the file <FILE> before initializing REPL. |
---|
64 | --load-system-file <FILE> |
---|
65 | Loads the system file <FILE> before initializing REPL. |
---|
66 | --batch |
---|
67 | The process evaluates forms specified by arguments and possibly by those |
---|
68 | by those in the intialization file '~/.abcl', and then exits. |
---|
69 | |
---|
70 | The occurance of '--' copies the remaining arguments, unprocessed, into |
---|
71 | the variable EXTENSIONS:*COMMAND-LINE-ARGUMENT-LIST*. |
---|
72 | \end{verbatim} |
---|
73 | |
---|
74 | All of the command line arguments which follow the occurrence of ``--'' |
---|
75 | are passed into a list bound to the EXT:*COMMAND-LINE-ARGUMENT-LIST* |
---|
76 | variable. |
---|
77 | |
---|
78 | \section{Initialization} |
---|
79 | |
---|
80 | If the ABCL process is started without the ``--noinit'' flag, it |
---|
81 | attempts to load a file named ``.abclrc'' located in the user's home |
---|
82 | directory and then interpret its contents. |
---|
83 | |
---|
84 | The user's home directory is determined by the value of the JVM system |
---|
85 | property ``user.home''. |
---|
86 | |
---|
87 | \chapter{Conformance} |
---|
88 | |
---|
89 | \section{ANSI Common Lisp} |
---|
90 | ABCL is currently a non-conforming ANSI Common Lisp implementation due |
---|
91 | to the following issues: |
---|
92 | |
---|
93 | \begin{itemize} |
---|
94 | \item Missing statement of conformance in accompanying documentation |
---|
95 | \item The generic function sigatures of the DOCUMENTATION symbol do |
---|
96 | not match the CLHS. |
---|
97 | \end{itemize} |
---|
98 | |
---|
99 | ABCL aims to be be a fully conforming ANSI Common Lisp |
---|
100 | implementation. Any other behavior should be reported as a bug. |
---|
101 | |
---|
102 | \section{Contemporary Common Lisp} |
---|
103 | In addition to ANSI conformance, ABCL strives to implement features |
---|
104 | expected of a contemporary Common Lisp. |
---|
105 | \begin{itemize} |
---|
106 | \item Incomplete (A)MOP |
---|
107 | % N.B. |
---|
108 | % TODO go through AMOP with symbols, starting by looking for |
---|
109 | % matching function signature. |
---|
110 | % XXX is this really blocking ANSI conformance? Answer: we have |
---|
111 | % to start with such a ``census'' to determine what we have. |
---|
112 | \item Incomplete Streams: need suitable abstraction between ANSI |
---|
113 | and Gray streams. |
---|
114 | |
---|
115 | \end{itemize} |
---|
116 | |
---|
117 | \chapter{Interaction with host JVM} |
---|
118 | |
---|
119 | % describe calling Java from Lisp, and calling Lisp from Java, |
---|
120 | % probably in two separate sections. Presumably, we can partition our |
---|
121 | % audience into those who are more comfortable with Java, and those |
---|
122 | % that are more comforable with Lisp |
---|
123 | |
---|
124 | \section{Lisp to Java} |
---|
125 | |
---|
126 | ABCL offers a number of mechanisms to manipulate Java libraries from |
---|
127 | Lisp. |
---|
128 | |
---|
129 | \begin{itemize} |
---|
130 | \item Java values are accessible as objects of type JAVA:JAVA-OBJECT. |
---|
131 | \item The Java FFI presents a Lisp package (JAVA) with many useful |
---|
132 | symbols for manipulating the artifacts of expectation on the JVM, |
---|
133 | including creation of new objects \ref{JAVA:JNEW}, \ref{JAVA:JMETHOD}), the |
---|
134 | introspection of values \ref{JAVA:JFIELD}, the execution of methods |
---|
135 | (\ref{JAVA:JCALL}, \ref{JAVA:JCALL-RAW}, \ref{JAVA:JSTATIC}) |
---|
136 | \item The JSS package (\ref{JSS}) in contrib introduces a convenient macro |
---|
137 | syntax \ref{JSS:SHARPSIGN_DOUBLEQUOTE_MACRO} for accessing Java |
---|
138 | methods, and additional convenience functions. |
---|
139 | \item Java classes and libraries may be dynamically added to the |
---|
140 | classpath at runtime (JAVA:ADD-TO-CLASSPATH). |
---|
141 | \end{itemize} |
---|
142 | |
---|
143 | \section{Lisp from Java} |
---|
144 | |
---|
145 | Manipulation of the Lisp API is currently lacking a stable interface, |
---|
146 | so the following documented interfaces are subject to change with |
---|
147 | notice: |
---|
148 | |
---|
149 | \begin{itemize} |
---|
150 | \item All Lisp values are descendants of LispObject.java |
---|
151 | \item Lisp symbols are accessible via either directly referencing the |
---|
152 | Symbol.java instance or by dynamically introspecting the |
---|
153 | corresponding Package.java instance. |
---|
154 | \item The Lisp dynamic environment may be saved via |
---|
155 | \code{LispThread.bindSpecial(Binding)} and restored via |
---|
156 | \code{LispThread.resetSpecialBindings(Mark)}. |
---|
157 | \item Functions may be executed by invocation of the |
---|
158 | Function.execute(args [...]) |
---|
159 | \end{itemize} |
---|
160 | |
---|
161 | \subsection{Lisp FFI} |
---|
162 | |
---|
163 | FFI stands for "Foreign Function Interface" which is the phase which |
---|
164 | the contemporary Lisp world refers to methods of "calling out" from |
---|
165 | Lisp into "foreign" languages and environments. This document |
---|
166 | describes the various ways that one interacts with Lisp world of ABCL |
---|
167 | from Java, considering the hosted Lisp as the "Foreign Function" that |
---|
168 | needs to be "Interfaced". |
---|
169 | |
---|
170 | \subsection{Calling Lisp from Java} |
---|
171 | |
---|
172 | Note: As the entire ABCL Lisp system resides in the org.armedbear.lisp |
---|
173 | package the following code snippets do not show the relevant import |
---|
174 | statements in the interest of brevity. An example of the import |
---|
175 | statement would be |
---|
176 | |
---|
177 | \begin{listing-java} |
---|
178 | import org.armedbear.lisp.*; |
---|
179 | \end{listing-java} |
---|
180 | |
---|
181 | to potentially import all the JVM symbol from the `org.armedbear.lisp' |
---|
182 | namespace. |
---|
183 | |
---|
184 | Per JVM, there can only ever be a single Lisp interpreter. This is |
---|
185 | started by calling the static method `Interpreter.createInstance()`. |
---|
186 | |
---|
187 | \begin{listing-java} |
---|
188 | Interpreter interpreter = Interpreter.createInstance(); |
---|
189 | \end{listing-java} |
---|
190 | |
---|
191 | If this method has already been invoked in the lifetime of the current |
---|
192 | Java process it will return null, so if you are writing Java whose |
---|
193 | life-cycle is a bit out of your control (like in a Java servlet), a |
---|
194 | safer invocation pattern might be: |
---|
195 | |
---|
196 | \begin{listing-java} |
---|
197 | Interpreter interpreter = Interpreter.getInstance(); |
---|
198 | if (interpreter == null) { |
---|
199 | interpreter = Interpreter.createInstance(); |
---|
200 | } |
---|
201 | \end{listing-java} |
---|
202 | |
---|
203 | |
---|
204 | The Lisp \code{eval} primitive may be simply passed strings for evaluation, |
---|
205 | as follows |
---|
206 | |
---|
207 | \begin{listing-java} |
---|
208 | String line = "(load \"file.lisp\")"; |
---|
209 | LispObject result = interpreter.eval(line); |
---|
210 | \end{listing-java} |
---|
211 | |
---|
212 | Notice that all possible return values from an arbitrary Lisp |
---|
213 | computation are collapsed into a single return value. Doing useful |
---|
214 | further computation on the ``LispObject'' depends on knowing what the |
---|
215 | result of the computation might be, usually involves some amount |
---|
216 | of \code{instanceof} introspection, and forms a whole topic to itself |
---|
217 | (c.f. [Introspecting a LispObject]) |
---|
218 | |
---|
219 | Using \code{eval} involves the Lisp interpreter. Lisp functions may |
---|
220 | be directly invoked by Java method calls as follows. One simply |
---|
221 | locates the package containing the symbol, then obtains a reference to |
---|
222 | the symbol, and then invokes the \code{execute()} method with the |
---|
223 | desired parameters. |
---|
224 | |
---|
225 | \begin{listing-java} |
---|
226 | interpreter.eval("(defun foo (msg) (format nil \"You told me '~A'~%\" msg))"); |
---|
227 | Package pkg = Packages.findPackage("CL-USER"); |
---|
228 | Symbol foo = pkg.findAccessibleSymbol("FOO"); |
---|
229 | Function fooFunction = (Function)foo.getSymbolFunction(); |
---|
230 | JavaObject parameter = new JavaObject("Lisp is fun!"); |
---|
231 | LispObject result = fooFunction.execute(parameter); |
---|
232 | // How to get the "naked string value"? |
---|
233 | System.out.println("The result was " + result.writeToString()); |
---|
234 | \end{listing-java} |
---|
235 | |
---|
236 | If one is calling an primitive function in the CL package the syntax |
---|
237 | becomes considerably simpler. If we can locate the instance of |
---|
238 | definition in the ABCL Java source, we can invoke the symbol directly. |
---|
239 | For instnace, to tell if a `LispObject` contains a reference to a symbol. |
---|
240 | |
---|
241 | \begin{listing-java} |
---|
242 | boolean nullp(LispObject object) { |
---|
243 | LispObject result = Primitives.NULL.execute(object); |
---|
244 | if (result == NIL) { // the symbol 'NIL' is explicity named in the Java |
---|
245 | // namespace at ``Symbol.NIL'' |
---|
246 | // but is always present in the |
---|
247 | // localnamespace in its unadorned form for |
---|
248 | // the convenience of the User. |
---|
249 | return false; |
---|
250 | } |
---|
251 | return true; |
---|
252 | } |
---|
253 | \end{listing-java} |
---|
254 | |
---|
255 | \subsubsection{Introspecting a LispObject} |
---|
256 | \label{topic:Introspecting a LispObject} |
---|
257 | |
---|
258 | We present various patterns for introspecting an an arbitrary |
---|
259 | `LispObject` which can represent the result of every Lisp evaluation |
---|
260 | into semantics that Java can meaningfully deal with. |
---|
261 | |
---|
262 | \subsubsection{LispObject as \code{boolean}} |
---|
263 | |
---|
264 | If the LispObject a generalized boolean values, one can use |
---|
265 | \code{getBooleanValue()} to convert to Java: |
---|
266 | |
---|
267 | \begin{listing-java} |
---|
268 | LispObject object = Symbol.NIL; |
---|
269 | boolean javaValue = object.getBooleanValue(); |
---|
270 | \end{listing-java} |
---|
271 | |
---|
272 | Although since in Lisp, any value other than NIL means "true" |
---|
273 | (so-called generalized Boolean), the use of Java equality it quite a |
---|
274 | bit easier to type and more optimal in terms of information it conveys |
---|
275 | to the compiler would be: |
---|
276 | |
---|
277 | \begin{listing-java} |
---|
278 | boolean javaValue = (object != Symbol.NIL); |
---|
279 | \end{listing-java} |
---|
280 | |
---|
281 | \paragraph{LispObject is a list} |
---|
282 | |
---|
283 | If LispObject is a list, it will have the type `Cons`. One can then use |
---|
284 | the \code{copyToArray} to make things a bit more suitable for Java |
---|
285 | iteration. |
---|
286 | |
---|
287 | \begin{listing-java} |
---|
288 | LispObject result = interpreter.eval("'(1 2 4 5)"); |
---|
289 | if (result instanceof Cons) { |
---|
290 | LispObject array[] = ((Cons)result.copyToArray()); |
---|
291 | ... |
---|
292 | } |
---|
293 | \end{listing-java} |
---|
294 | |
---|
295 | A more Lispy way to iterated down a list is to use the `cdr()` access |
---|
296 | function just as like one would traverse a list in Lisp:; |
---|
297 | |
---|
298 | \begin{listing-java} |
---|
299 | LispObject result = interpreter.eval("'(1 2 4 5)"); |
---|
300 | while (result != Symbol.NIL) { |
---|
301 | doSomething(result.car()); |
---|
302 | result = result.cdr(); |
---|
303 | } |
---|
304 | \end{listing-java} |
---|
305 | |
---|
306 | \chapter{Implementation Dependent Extensions} |
---|
307 | |
---|
308 | As outlined by the CLHS ANSI conformance guidelines, we document the |
---|
309 | extensions to the Armed Bear Lisp implementation made accessible to |
---|
310 | the user by virtue of being an exported symbol in the JAVA, THREADS, |
---|
311 | or EXTENSIONS packages. |
---|
312 | |
---|
313 | \section{JAVA} |
---|
314 | |
---|
315 | \subsection{Modifying the JVM CLASSPATH} |
---|
316 | |
---|
317 | The JAVA:ADD-TO-CLASSPATH generic functions allows one to add the |
---|
318 | specified pathname or list of pathnames to the current JVM classpath |
---|
319 | allowing the dynamic loading of JVM objects: |
---|
320 | |
---|
321 | \begin{listing-lisp} |
---|
322 | CL-USER> (add-to-classpath "/path/to/some.jar") |
---|
323 | \end{listing-lisp} |
---|
324 | |
---|
325 | \subsection{API} |
---|
326 | |
---|
327 | % include autogen docs for the JAVA package. |
---|
328 | \include{java} |
---|
329 | |
---|
330 | \section{THREADS} |
---|
331 | |
---|
332 | Multithreading |
---|
333 | |
---|
334 | \subsection{API} |
---|
335 | |
---|
336 | % include autogen docs for the THREADS package. |
---|
337 | \include{threads} |
---|
338 | |
---|
339 | \section{EXTENSIONS} |
---|
340 | |
---|
341 | The symbols in the EXTENSIONS package (nicknamed ``EXT'') constitutes |
---|
342 | extensions to the ANSI standard that are potentially useful to the |
---|
343 | user. They include functions for manipulating network sockets, |
---|
344 | running external programs, registering object finalizers, constructing |
---|
345 | reference weakly held by the garbage collector and others. |
---|
346 | |
---|
347 | See \ref{Extensible Sequences} for a generic function interface to |
---|
348 | the native JVM contract for \code{java.util.List}. |
---|
349 | |
---|
350 | \subsection{API} |
---|
351 | |
---|
352 | % include autogen docs for the EXTENSIONS package. |
---|
353 | \include{extensions} |
---|
354 | |
---|
355 | \chapter{Beyond ANSI} |
---|
356 | |
---|
357 | Naturally, in striving to be a useful contemporary Common Lisp |
---|
358 | implementation, ABCL endeavors to include extensions beyond the ANSI |
---|
359 | specification which are either widely adopted or are especially useful |
---|
360 | in working with the hosting JVM. |
---|
361 | |
---|
362 | \section{Implementation Dependent} |
---|
363 | \begin{enumerate} |
---|
364 | \item Compiler to JVM 5 bytecode |
---|
365 | \item Pathname extensions |
---|
366 | \end{enumerate} |
---|
367 | |
---|
368 | \section{Pathname} |
---|
369 | |
---|
370 | We implment an extension to the Pathname that allows for the |
---|
371 | description and retrieval of resources named in a URI scheme that the |
---|
372 | JVM ``understands''. Support is built-in to the ``http'' and |
---|
373 | ``https'' implementations but additional protocol handlers may be |
---|
374 | installed at runtime by having JVM symbols present in the |
---|
375 | sun.net.protocol.dynmamic pacakge. See [JAVA2006] for more details. |
---|
376 | |
---|
377 | ABCL has created specializations of the ANSI Pathname object to |
---|
378 | enable to use of URIs to address dynamically loaded resources for the |
---|
379 | JVM. A URL-PATHNAME has a corresponding URL whose cannoical |
---|
380 | representation is defined to be the NAMESTRING of the Pathname. |
---|
381 | |
---|
382 | PATHNAME : URL-PATHNAME : JAR-PATHNAME |
---|
383 | |
---|
384 | Both URL-PATHNAME and JAR-PATHNAME may be used anu where will a |
---|
385 | PATHNAME is accepted witht the following caveats |
---|
386 | |
---|
387 | A stream obtained via OPEN on a URL-PATHNAME cannot be the target of |
---|
388 | write operations. |
---|
389 | |
---|
390 | No canonicalization is performed on the underlying URI (i.e. the |
---|
391 | implementation does not attempt to compute the current name of the |
---|
392 | representing resource unless it is requested to be resolved.) Upon |
---|
393 | resolution, any cannoicalization procedures followed in resolving the |
---|
394 | resource (e.g. following redirects) are discarded. |
---|
395 | |
---|
396 | The implementation of URL-PATHNAME allows the ABCL user to laod dynamically |
---|
397 | code from the network. For example, for Quicklisp. |
---|
398 | |
---|
399 | \begin{listing-lisp} |
---|
400 | CL-USER> (load "http://beta.quicklisp.org/quicklisp.lisp") |
---|
401 | \end{listing-lisp} |
---|
402 | |
---|
403 | will load and execute the Quicklisp setup code. |
---|
404 | |
---|
405 | \ref{XACH2011} |
---|
406 | |
---|
407 | \section{Extensible Sequences} |
---|
408 | |
---|
409 | \ref{RHODES2007} |
---|
410 | |
---|
411 | The SEQUENCE package fully implements Christopher Rhodes' proposal for |
---|
412 | extensible sequences. These user extensible sequences are used |
---|
413 | directly in \code{java-collections.lisp} provide these CLOS |
---|
414 | abstractions on the standard Java collection classes as defined by the |
---|
415 | \code{java.util.List} contract. |
---|
416 | |
---|
417 | This extension is not automatically loaded by the implementation. It |
---|
418 | may be loaded via: |
---|
419 | |
---|
420 | \begin{listing-lisp} |
---|
421 | CL-USER> (require 'extensible-sequences) |
---|
422 | \end{listing-lisp} |
---|
423 | |
---|
424 | \section{Extensions to CLOS} |
---|
425 | |
---|
426 | There is an additional syntax for specializing the parameter of a |
---|
427 | generic function on a java class, viz. \code{(java:jclass CLASS-STRING)} |
---|
428 | where \code{CLASS-STRING} is a string naming a Java class in dotted package |
---|
429 | form. |
---|
430 | |
---|
431 | For instance the following specialization would perhaps allow one to |
---|
432 | print more information about the contents of a java.util.Collection |
---|
433 | object |
---|
434 | |
---|
435 | \begin{listing-lisp} |
---|
436 | (defmethod print-object ((coll (java:jclass "java.util.Collection")) |
---|
437 | stream) |
---|
438 | ;;; ... |
---|
439 | ) |
---|
440 | \end{listing-lisp} |
---|
441 | |
---|
442 | If the class had been loaded via a classloader other than the original |
---|
443 | the class you wish to specialize on, one needs to specify the |
---|
444 | classloader as an optional third argument. |
---|
445 | |
---|
446 | \begin{listing-lisp} |
---|
447 | |
---|
448 | (defparameter *other-classloader* |
---|
449 | (jcall "getBaseLoader" cl-user::*classpath-manager*)) |
---|
450 | |
---|
451 | (defmethod print-object ((device-id (java:jclass "dto.nbi.service.hdm.alcatel.com.NBIDeviceID" *other-classloader*)) |
---|
452 | stream) |
---|
453 | ;;; ... |
---|
454 | ) |
---|
455 | \end{listing-lisp} |
---|
456 | |
---|
457 | \section{Extensions to the Reader} |
---|
458 | |
---|
459 | We implement a special hexadecimal escape sequence for specifying |
---|
460 | characters to the Lisp reader, namely we allow a sequences of the form |
---|
461 | \# \textbackslash Uxxxx to be processed by the reader as character whose code is |
---|
462 | specified by the hexadecimal digits ``xxxx''. The hexadecimal sequence |
---|
463 | must be exactly four digits long, padded by leading zeros for values |
---|
464 | less than 0x1000. |
---|
465 | |
---|
466 | Note that this sequence is never output by the implementation. Instead, |
---|
467 | the corresponding Unicode character is output for characters whose |
---|
468 | code is greater than 0x00ff. |
---|
469 | |
---|
470 | \section{ASDF} |
---|
471 | |
---|
472 | asdf-2.017 is packaged as core component of ABCL. By default, ASDF is |
---|
473 | not loaded, as it relies on the CLOS subsystem which can take a bit of |
---|
474 | time to initialize. |
---|
475 | |
---|
476 | \begin{listing-lisp} |
---|
477 | CL-USER> (require 'asdf) |
---|
478 | \end{listing-lisp} |
---|
479 | |
---|
480 | \chapter{Contrib} |
---|
481 | |
---|
482 | \section{abcl-asdf} |
---|
483 | |
---|
484 | Allow ASDF system definition which dynamically loads JVM artifacts |
---|
485 | such as jar archives via a Maven encapsulation. |
---|
486 | |
---|
487 | ASDF components added: JAR-FILE, JAR-DIRECTORY, CLASS-FILE-DIRECTORY |
---|
488 | and MVN. |
---|
489 | |
---|
490 | \section{asdf-install} |
---|
491 | |
---|
492 | An implementation of ASDF-INSTALL. Superceded by Quicklisp (qv.) |
---|
493 | |
---|
494 | \section{asdf-jar} |
---|
495 | |
---|
496 | ASDF-JAR provides a system for packaging ASDF systems into jar |
---|
497 | archives for ABCL. Given a running ABCL image with loadable ASDF |
---|
498 | systems the code in this package will recursively package all the |
---|
499 | required source and fasls in a jar archive. |
---|
500 | |
---|
501 | \section{jss} |
---|
502 | |
---|
503 | Java Syntax sucks, so we introduce the \#" macro. |
---|
504 | |
---|
505 | |
---|
506 | \chapter{History} |
---|
507 | |
---|
508 | ABCL was originally the extension language for the J editor, which was |
---|
509 | started in 1998 by Peter Graves. Sometime in 2003, it seems that a |
---|
510 | lot of code that had previously not been released publically was |
---|
511 | suddenly committed that enabled ABCL to be plausibly termed an ANSI |
---|
512 | Common Lisp implementation. |
---|
513 | |
---|
514 | In 2006, the implementation was transferred to the current |
---|
515 | maintainers, who have strived to improve its usability as a |
---|
516 | contemporary Common Lisp implementation. |
---|
517 | |
---|
518 | In 201x, with the publication of this Manual explicitly stating the |
---|
519 | conformance of Armed Bear Common Lisp to ANSI, we release abcl-1.0. |
---|
520 | |
---|
521 | |
---|
522 | |
---|
523 | |
---|
524 | \section{References} |
---|
525 | |
---|
526 | [Java2000]: A New Era for Java Protocol Handlers. |
---|
527 | \url{http://java.sun.com/developer/onlineTraining/protocolhandlers/} |
---|
528 | |
---|
529 | [Xach2011]: Quicklisp: A system for quickly constructing Common Lisp |
---|
530 | libraries. \url{http://www.quicklisp.org/} |
---|
531 | |
---|
532 | |
---|
533 | \end{document} |
---|
534 | |
---|
535 | % TODO |
---|
536 | % 1. Create mechanism for swigging DocString and Lisp docs into |
---|
537 | % sections. |
---|
538 | |
---|