Difference between revisions of "LISP"

From EDM2
Jump to: navigation, search
m (Standards)
m (LISP related programmer's utilities)
Line 31: Line 31:
 
* [[Snappy]] - Compression lib. - Open Source
 
* [[Snappy]] - Compression lib. - Open Source
  
===LISP related programmer's utilities===
+
===Programmer's utilities===
* [[DTRACE]] - Debug tool - Open source
+
* [[DTRACE]] - Debug tool
* [[Exuberant ctags]] - Creates index files out of Scheme and LISP source files - Open source
+
* [[Exuberant ctags]] - Creates index files out of Scheme and LISP source files
  
 
;Editor support
 
;Editor support
Line 41: Line 41:
 
;Source code snippets, archives and collections
 
;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.
 
Small programs or routines that you can integrate into your own programs or study to learn from, but are not delivered in library form.
* [[Artificial flavors]] - Open source
+
* [[Artificial flavors]]
* [[SDRAW]] - A utility that draws ConsCell structures - Open source
+
* [[SDRAW]] - A utility that draws ConsCell structures
 
* [https://sourceforge.net/projects/clocc/files/ CLOCC - Common Lisp Open Code Collection] - Small open source applications.
 
* [https://sourceforge.net/projects/clocc/files/ CLOCC - Common Lisp Open Code Collection] - Small open source applications.
 
* [https://github.com/lispgames/lispgames.github.io/wiki LISP games Wiki] - Collection of mainly small LISP games
 
* [https://github.com/lispgames/lispgames.github.io/wiki LISP games Wiki] - Collection of mainly small LISP games

Revision as of 23:00, 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

Programmer's utilities

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