Difference between revisions of "LISP"

From EDM2
Jump to: navigation, search
m (Standard LISP)
m (Standards)
Line 154: Line 154:
 
* [http://reed.cs.depaul.edu/peterh/Tools/lisptutor.html LispTutor Jr.]
 
* [http://reed.cs.depaul.edu/peterh/Tools/lisptutor.html LispTutor Jr.]
 
* [http://www.p-cos.net/lisp/guide.html Pascal Costanza's Highly Opinionated Guide to Lisp]
 
* [http://www.p-cos.net/lisp/guide.html Pascal Costanza's Highly Opinionated Guide to Lisp]
 
==Standards==
 
;Standard Lisp
 
* Jed Marti, A. C. Hearn, M. L. Griss and C. Griss: ''[http://www.ceng.metu.edu.tr/~ucoluk/research/lisp/sl.pdf The Standard Lisp Report]'' - ACM SIGPLAN Notices 14, No 10 (1979), pages 48~68. - This is what became Portable (Utah) Standard Lisp.
 
  
 
[[Category:Programming Languages]][[Category:LISP]]
 
[[Category:Programming Languages]][[Category:LISP]]

Revision as of 22:59, 20 May 2019

LISP (LISt Processor) is a list processing language, one of the earliest programming language to feature a garbage collector.

History

It was first described in 1959 with working implementations arriving in the 1960s. Popular in early AI research but is also used as a scripting language in packages such as Emacs, later variants have gained functional programming features and most modern variants have also gotten some object-oriented features, but referring to any LISP variant as an object-oriented or a functional programming language is taking religious fervour a step too far.

The main problem LISP originally had in gaining any mainstream acceptance as a programming language was simply performance related, while LISP was perfectly acceptable for writing small programs in, large programs could only be done cost effectively after the advent of virtual memory, but that only happened in the late 60s on mainframes, in the 80s for minicomputers and workstations and in the 90s for microcomputers and by that time the LISP world had become so fragmented that it had difficulty maintaining any traction. This also lead a number of companies to release computer systems in the 1970s and 80s that were specifically designed to run LISP.

See also: Standard LISP

OS/2 Implementations

Libraries

Foreign libraries with LISP or Scheme bindings

  • Cairo - 2D graphics library (CL + Scheme) - Open source
  • LibcURL - Internet URL (WWW, FTP) access (LISP + Scheme) - Open Source
  • Snappy - Compression lib. - Open Source

LISP related programmer's utilities

  • DTRACE - Debug tool - Open source
  • Exuberant ctags - Creates index files out of Scheme and LISP source files - Open source
Editor support
  • Boxer - LISP syntax highlighting support built in - Commercial
  • Lugaru Epsilon - LISP syntax highlighting and auto-indent available as a separate download.
Source code snippets, archives and collections

Small programs or routines that you can integrate into your own programs or study to learn from, but are not delivered in library form.

DOS Implementations

Libraries

Closely related languages

  • Fjölnir - Open source
Editor support
  • Boxer - LISP syntax highlighting support built in - Commercial

Win-OS/2 implementations

  • Apteryx Lisp 1.04 - shareware
  • Golden Common-LISP - Commercial
  • Goldworks - Commercial
  • IBM Common Lisp - As front-end only - Commercial
  • Le-Lisp (ILOG)
  • RefLisp - Open source
  • SCM - Open source

Libraries

Java Implementations

Related languages
  • Clojure - Functional language that uses LISP syntax.
Editor support
  • jEdit - Java based - LISP and Scheme syntax highlighting built in

JavaScript Implementations

Related languages

Publications

Books

  • John R. Anderson; Albert Corbett; Brian J. Reiser: Essential Lisp - Addison-Wesley 1986, ISBN 0-201-11148-9
  • Patrick Henry Winston; Berthold K.P. Horn: Lisp (Third edition) - Addison-Wesley 1989, ISBN 0-201-08319-1
An older edition of the book is available: PDF
CLOS, MOP and PCL
  • Gregor Kiczales, Jim des Rivieres, Daniel G. Bobrow: The Art of the Metaobject Protocol - MIT Press 1991, ISBN 026261074
  • Robert R. Kessler, Amy R. Petajan: LISP, Objects, and Symbolic Programming - Scott Foresman 1988, ISBN 0-673-39773-4

Articles, talks, presentations and papers

Slightly misleading title, the talk is more about the package manager ASDF than scripting per se.
  • Pascal Costanza: How to Make Lisp More Special - Originally published in the Proceedings of the International Lisp Conference 2005, Stanford, California, USA, June 19-22, 2005.
  • Richard Barber & George Imlah: Delivering the Goods with Lisp. Communications of the ACM 34(9); pages 61-63 - 1991
CLOS, MOP and PCL
  • BYTE Magazine August 1979 - The LISP issue - Totally outdated by now, but a very interesting read, note that the DJVU version is only 1/20th the size of the PDF version before you download.
Meta-objects
Parallel processing
Introductory articles and mini-tutorials

Links

Tutorials