PicoLisp

PicoLisp
Paradigm functional, procedural, object-oriented, declarative, reflective, meta
Designed by Alexander Burger
First appeared 1988
Stable release
18.9.26 / September 26, 2018 (2018-09-26)
Typing discipline duck, dynamic, strong
Platform POSIX
License MIT
Filename extensions .l
Website picolisp.com

PicoLisp is an open source Lisp dialect. It runs on Linux and other POSIX-compliant systems. Its most prominent features are simplicity and minimalism. It is built on top of a single internal data type (cell). On the language level the programmer can use three different data types (numbers, symbols, and lists) being represented by cells and differentiated by bits at the end of the cell.[1]

Features

Functions are free from the restrictions that would be imposed by a compiler, and can so accept arbitrary types and numbers of arguments. Macros are needed only in rare cases and are implemented using the quote function. PicoLisp does not include Lisp's lambda function. This is caused by the fact that the quote function is changed to return all its arguments unevaluated, not only the car of the first.[2]

A special feature is the intrinsic CRUD functionality. Persistent symbols are first-class objects, they are loaded from database files automatically when accessed, and written back when modified. Applications are written using a class hierarchy of entities and relations.

Additional features include: Prolog engine and database queries, distributed databases, inlining of C language functions and native C function calls, child process management, interprocess communication, browser GUI, and internationalization.

History

Originally developed on the Macintosh in the 1980s, and used in commercial application development since then. It was ported to MS-DOS and SCO Unix, and used mainly on Linux since 1993. Database functionality was added in the mid-1990s.

While the first versions were written in a mix of C and assembly language, a first rewrite from scratch was done in 1999 completely in C. That version was released 2002 under the GNU GPL license, and changed to a MIT/X11 license in 2010.

In 2009 the 64-bit version was released, another rewrite, this time written in a generic assembler which in turn is implemented in PicoLisp. This version adds support for coroutines.

A Java version called "Ersatz Picolisp" was released in December 2010.[3]

In September 2014, Burger announced the PilMCU project on the PicoLisp development listserv, an effort with George Orais to implement PicoLisp directly in hardware.[4]

References

  1. Burger, Alexander. "Internal structures".
  2. "Even small details make a difference!".
  3. Burger, Alexander (8 May 2013). "Ersatz PicoLisp".
  4. "Announce: PicoLisp in Hardware".
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.