enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Common Lisp - Wikipedia

    en.wikipedia.org/wiki/Common_Lisp

    Common Lisp is a dialect of Lisp. It uses S-expressions to denote both code and data structure. Function calls, macro forms and special forms are written as lists, with the name of the operator first, as in these examples: (+ 2 2) ; adds 2 and 2, yielding 4. The function's name is '+'. Lisp has no operators as such.

  3. Lisp (programming language) - Wikipedia

    en.wikipedia.org/wiki/Lisp_(programming_language)

    In the Common Lisp dialect, destructive functions are commonplace; the equivalent of set-car! is named rplaca for "replace car". This function is rarely seen, however, as Common Lisp includes a special facility, setf, to make it easier to define and use destructive functions. A frequent style in Common Lisp is to write code functionally ...

  4. List of Lisp-family programming languages - Wikipedia

    en.wikipedia.org/wiki/List_of_Lisp-family...

    List of Lisp-family programming languages. The programming language Lisp is the second-oldest high-level programming language with direct descendants and closely related dialects still in widespread use today. The language Fortran is older by one year. [1][2] Lisp, like Fortran, has changed a lot since its early days, and many dialects have ...

  5. Lisp (book) - Wikipedia

    en.wikipedia.org/wiki/Lisp_(book)

    The code examples were highlighted as being the strength of the book, being small enough to understand, but large enough to illustrate and motivate important techniques in symbolic programming. [8] In a 1993 review of Artificial Intelligence ( Winston ) by Doris Appleby, the 1989 edition of LISP was reviewed in its role as a companion reference.

  6. Format (Common Lisp) - Wikipedia

    en.wikipedia.org/wiki/Format_(Common_Lisp)

    Format is a function in Common Lisp that can produce formatted text using a format string similar to the printf format string.It provides more functionality than printf, allowing the user to output numbers in various formats (including, for instance: hex, binary, octal, roman numerals, and English), apply certain format specifiers only under certain conditions, iterate over data structures ...

  7. Steel Bank Common Lisp - Wikipedia

    en.wikipedia.org/wiki/Steel_Bank_Common_Lisp

    Steel Bank Common Lisp (SBCL) is a free Common Lisp implementation that features a high-performance native compiler, Unicode support and threading. It is open source software, with a permissive license. In addition to the compiler and runtime system for ANSI Common Lisp, it provides an interactive environment including a debugger, a statistical ...

  8. Common Lisp Object System - Wikipedia

    en.wikipedia.org/wiki/Common_Lisp_Object_System

    Standard method combination in ANSI common lisp. The Common Lisp Object System (CLOS) is the facility for object-oriented programming in ANSI Common Lisp. CLOS is a powerful dynamic object system which differs radically from the OOP facilities found in more static languages such as C++ or Java. CLOS was inspired by earlier Lisp object systems ...

  9. Practical Common Lisp - Wikipedia

    en.wikipedia.org/wiki/Practical_Common_Lisp

    Practical Common Lisp. Practical Common Lisp is an introductory book on the programming language Common Lisp by Peter Seibel. [1] It features a fairly complete introduction to the language interspersed with practical example chapters, which show developing various pieces of software [2] [3] such as a unit testing framework, a library for ...