Geometry.Net - the online learning center
Home  - Basic_L - Lisp Programming
e99.com Bookstore
  
Images 
Newsgroups
Page 2     21-40 of 128    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7  | Next 20
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

         Lisp Programming:     more books (100)
  1. LISP Lore: A Guide to Programming the LISP Machine by H. Bromley, Richard Lamson, 1987-06-30
  2. Object-Oriented Common LISP by Stephen Slade, 1997-08-09
  3. Symbolic Computing With Lisp and Prolog by Robert A. Mueller, Rex L. Page, 1988-11
  4. Common Lisp: A Gentle Introduction to Symbolic Computation by David S. Touretzky, 1989-09
  5. Lisp in Small Pieces by Christian Queinnec, 1996-06-28
  6. Introduction to Common Lisp by Taichi Yuasa et, 1987-09-28
  7. Common Lisp: The Reference by Franz Inc., Staff Franz Inc, 1988-12
  8. Visual LISP Programming: Principles and Techniques by Rod Rawls, Mark Hagen, et all 2007-10
  9. Programming Paradigms in Lisp (McGraw-Hill series in artificial intelligence) by Rajeev Sangal, 1991-02
  10. Parallel Lisp: Languages and Systems (Lecture Notes in Computer Science) by Japan Workshop on Parallel Lisp, et all 1990-10
  11. Proceedings of the 1986 Acm Conference on Lisp and Functional Programming
  12. LISP for Micros (Newnes programming books) by S. Oakey, 1984-09
  13. An Introduction to Programming in Lisp by H. Wertz, 1988-09
  14. Lisp Programming (Computer Science Texts) by I. Danicic, 1983-12

21. Lisp Programming Language - Wikipedia, The Free Encyclopedia
lisp programming language Wikipedia, the free encyclopedialisp programming language. (Redirected from LISP). Lisp (which stands for LISt Processing ) is a programming language oriented towards functional programming.
http://en.wikipedia.org/wiki/Lisp_programming_language
Lisp programming language
From Wikipedia, the free encyclopedia.
Lisp is a family of computer programming languages with a long history. Developed first as an abstract notation for recursive functions , it later became the favored language of artificial intelligence research during the field's heyday in the and . Lisp languages are today used in a number of fields, from Web development to finance http://alu.cliki.net/Industry%20Application , and are also common in computer science education The name Lisp derives from "List Processing". Linked lists are one of Lisp languages' major data structures , and the same basic list operations work in all Lisp dialects. Other commonalities in Lisp dialects include dynamic typing , support for functional programming , and the ability to manipulate source code as data. Lisp languages also have an instantly-recognizable appearance. Program code is written using the same syntax as lists the parenthesized S-expression syntax. Every sub-expression in a program (or data structure) is set off with parentheses. This makes Lisp languages easy to parse , and also makes it simple to do metaprogramming creating programs which write other programs.

22. Programming In Emacs Lisp: Programming In Emacs Lisp
Programming in Emacs Lisp. Info Programming in Emacs Lisp (An introduction) 1.05
http://www.math.s.chiba-u.ac.jp/~matsu/lisp/emacs-lisp-intro-jp.html
Top Contents Index
Programming in Emacs Lisp
`emacs-lisp-intro-1.05.tar.gz' $B$G$9!#(B $B=xJ8(B Lisp $B$C$F2?!)(B 2. $B 4. $B%P%C%U%!$K4X$9$k4v$D$+$N4X?t(B 6. $B%J%m! <%$%s%0$H%o%$%I%K%s%0(B Emacs $B$NCm0U$rFCDj$N%j! <%8%g%s$K$;$P$a$k(B car cdr cons 8. $B%F%-%9%H$N@Z$j ... the-the Appendix: $B$@$V$C$?C18l$r8+$D$1$k$K$O(B B. Kill $B%j%s%0$N07$$(B C. $B%i%Y%k$H <4$,IU$$$?%0%i%U(B Index ... About the Author
The Detailed Node Listing -
Preface
$B$3$N%F%-%9%H$rFI$`$K$"$?$C$F(B
$B$3$l$OC/$N$?$a$K=q$+$l$?$b$N$+(B Lisp $B$NNr;K(B $B=i?4 ...
1.1 Lisp $B$N%j%9%H(B
$B%j%9%H$C$F$J$"$K!)(B 1.2 $B%W%m%0%i%`$N Lisp $B$N%j%9%H$O$9$0$K 1.3 $B%(%i! <%a%C%;! ... 1.10 $B$^$H$a(B
Lisp Lists
1.1.1 Lisp $B$N%"%H%`(B
$BJ,2rIT2DG=$JB8:_(B 1.1.2 $B%j%9%H$NCf$N6uGr(B 1.1.3 GNU Emacs $B$K$h$k%j%9%H$N%?%$%W$N;Y1g(B
The Lisp Interpreter
1.5.1 $B%P%$%H%3%s%Q%$%k(B

Evaluation
1.6.1 $BFbIt$N%j%9%H$NI>2A(B
Variables <%a%C%;! <%8(B Arguments 1.8.1 $B0z?t$N%G! <%?7?(B 1.8.2 $B0z?t$K$OJQ?t$NCM$d%j%9%H$b;H$($k(B 1.8.3 $B2DJQ$J?t$N0z?t(B $B$b$N$b$"$k(B 1.8.4 $B4X?t$K4V0c$C$?7?$N0z?t$rM?$($k$H(B

23. LISP Tutorial 1: Basic LISP Programming
LISP Tutorial 1 Basic lisp programming. LISP Expressions. When you start Editing, Loading and Compiling LISP Programs. Most of the
http://www.cs.sfu.ca/CC/310/pwfong/Lisp/1/tutorial1.html
LISP Tutorial 1: Basic LISP Programming
LISP Expressions
When you start up the Common LISP environment, you should see a prompt, which means that LISP is waiting for you to enter a LISP expression. In the environment I am using, it looks like the following: USER(1): The Common LISP environment follows the algorithm below when interacting with users: loop read in an expression from the console; evaluate the expression; print the result of evaluation to the console; end loop. Common LISP reads in an expression, evaluates it, and then prints out the result. For example, if you want to compute the value of (2 * cos(0) * (4 + 6)) , you type in: USER(1): (* 2 (cos 0) (+ 4 6)) Common LISP replies: before prompting you to enter the next expression. Several things are worth noting:
  • LISP expressions are composed of forms . The most common LISP form is function application . LISP represents a function call f(x) as (f x) . For example, cos(0) is written as (cos 0)
  • LISP expressions are case-insensitive. It makes no difference whether we type (cos 0) or (COS 0)
  • Similarly, "

24. The LISP Programming System
The lisp programming System. The lisp programming system f. Status of the lisp programming System (February 1960). A variant of the
http://www-formal.stanford.edu/jmc/recursive/node4.html
Next: Another Formalism for Functions Up: Recursive Functions of Symbolic Previous: Recursive Functions of Symbolic
The LISP Programming System
The LISP programming system is a system for using the IBM 704 computer to compute with symbolic information in the form of S-expressions. It has been or will be used for the following purposes: l. Writing a compiler to compile LISP programs into machine language. 2. Writing a program to check proofs in a class of formal logical systems. 3. Writing programs for formal differentiation and integration. 4. Writing programs to realize various algorithms for generating proofs in predicate calculus. 5. Making certain engineering calculations whose results are formulas rather than numbers. 6. Programming the Advice Taker system. The basis of the system is a way of writing computer programs to evaluate S-functions. This will be described in the following sections. In addition to the facilities for describing S-functions, there are facilities for using S-functions in programs written as sequences of statements along the lines of FORTRAN (4) or ALGOL (5). These features will not be described in this article. a.

25. Oreilly.com -- Online Catalog: Learning GNU Emacs, 2nd Edition
This comprehensive guide to the GNU Emacs editor, one of the most widely used and powerful editors available under UNIX, covers basic editing, several important editing modes and customization and Emacs lisp programming.
http://www.oreilly.com/catalog/gnu2/

O'Reilly Home
Press Room Jobs Resource Centers Perl Java Python C/C++ ... Enterprise Development Book Series Hacks Head First Cookbooks In a Nutshell ... Developer's Notebooks Publishing Partners No Starch Press Paraglyph Press Pragmatic Bookshelf Syngress Publishing Online Publications LinuxDevCenter.com MacDevCenter.com WindowsDevCenter.com ONDotnet.com ... Scripts
Special Interest Events Meerkat News Ask Tim tim.oreilly.com ... Open Books Special Sales Academic Corporate Government Inside O'Reilly About O'Reilly International Advertise with Us Contact Us ... Bookstores Traveling to
a tech show? Hotel Search
Hotel Discounts

Discount Hotels

Chicago Hotels
...
Register your book
to get email notification of new editions, special offers, and more. Search on Safari Search contents of Learning GNU Emacs, 2nd Edition Code Fragments only Also see:
Table of Contents

Index
Learning GNU Emacs, 2nd Edition
By  Debra Cameron Bill Rosenblatt Eric S. Raymond
2nd Edition September 1996 ISBN: 1-56592-152-6 Buy from O'Reilly: Buy Online at: select a store O'Reilly Amazon.com Amazon.co.uk Amazon.ca

26. Free Software Directory: LISP Programming Language
FSF / UNESCO Free Software Directory. 3,169 packages indexed. Up . Top Software development Programming languages lisp programming language.
http://www.gnu.org/directory/devel/prog/LISP_programming_language/
FSF UNESCO Free Software Directory
3,221 packages indexed Top Software development Programming languages LISP programming language ACDK - [LGPL] - 2003-07-01
Java-like C++ framework with scripting and distributed components - [The GNU General Public License, Version 2] - 2003-07-16
Programming language for modelling computer systems and proving properties of those models CLISP - [The GNU General Public License, Version 2] - 2004-06-03
ANSI Common Lisp compiler, debugger, and interpreter CMUCL - [PublicDomain] - 2004-04-05
Free implementation of Common Lisp Elib - [The GNU General Public License, Version 2] - 2002-02-28
Library of Emacs LISP functions Emacs Common Lisp - [The GNU General Public License, Version 2] - 2004-04-02
Common Lisp implementation for Emacs Garnet - [PublicDomain] - 2004-04-05
Graphical toolkit for Lisp GCL - [LGPL] - 2004-02-09
Compiler and interpreter for Common Lisp GOOPS - [The GNU General Public License, Version 2 or later] - 2002-01-24
Object-oriented extension to 'guile' Kawa - [Kawa] - 2004-06-08
Scheme and Emacs Lisp on a Java VM LISA - [LGPL] - 2004-04-05 Platform for developing Lisp-based Intelligent Software Agents Lush - [The GNU General Public License, Version 2 or later] - 2004-02-02

27. LISP Programming
lisp programming. 1. Brooks, R., Programming in Common Lisp, New York, NY Wiley (1985). 2. Cameron, RD, Dixon, AH, Symbolic Computing with LISP.
http://www.cs.iastate.edu/~honavar/texts/node5.html
Next: JAVA Programming Up: AI Programming Previous: AI Programming
LISP Programming
Brooks, R., Programming in Common Lisp , New York, NY: Wiley (1985).
Symbolic Computing with LISP . New York, NY: Prentice Hall (1992).
Artificial Intelligence Programming . Hillsdale, NJ: Lawrence Erlbaum Associates (1980).
Building Problem Solvers. Cambridge, MA: MIT Press. (1993).
Franz, Inc., Common LISP: The Reference . Reading, MA: Addison-Wesley (1988).
Graham, P. ANSI Common Lisp . Englewood Cliffs, NJ: Prentice Hall (1995).
Norvig, P., Paradigms of Artificial Intelligence Programming Case Studies in Common Lisp . Palo Alto, CA: Morgan Kaufmann (1992).
Touretzky, D. S., A Gentle Introduction to Symbolic Computation . New York, NY: Addison Wesley (1990).
Lisp . New York: Addison-Wesley (1989).

Vasant Honavar

28. Lisp Programming Language
lisp programming language. Lisp (which stands for LISt Processing ) is a programming language oriented towards functional programming.
http://www.fact-index.com/l/li/lisp_programming_language.html
Main Page See live article Alphabetical index
Lisp programming language
Lisp (which stands for " LIS t P rocessing") is a programming language oriented towards functional programming . Its prominent features include prefix-notation syntax, dynamic typing (variables are type-neutral, but values have implicit type), and the ability to treat source code as first-class objects. Not counting the various machine languages and assembly languages , Lisp is the second-oldest programming language still in widespread use; only Fortran is older. Like Fortran, it has changed greatly since its early days. Strictly speaking, Lisp is now not a single language but a family of similarly-styled languages with an instantly recognizable appearance. These are known as Lisp dialects; the most well-known are Common Lisp and Scheme Table of contents 1 History
2 Syntax

3 Minimal Lisp

4 Example programs
...
8 See also
History
Information Processing Language was the first AI language, from 1955 or 1956, and already included many of the concepts, such as list-processing, which came to be used in Lisp. Lisp was invented by John McCarthy in while he was at MIT . McCarthy published its design a paper in Communications of the ACM in , entitled "Recursive Functions of Symbolic Expressions and Their Computation by Machine, Part I". (Part II was never published.) He showed that with a couple of simple operators and a notation for functions (see minimal lisp below) you may build a whole programming language.

29. Emacs Lisp Programming Language
Emacs lisp programming language. R. Chassell, Programming in Emacs Lisp, an Introduction http//www.gnu.org/manual/emacslisp-intro/emacs-lisp-intro.html;
http://www.fact-index.com/e/em/emacs_lisp_programming_language.html
Main Page See live article Alphabetical index
Emacs Lisp programming language
Emacs Lisp is a dialect of the Lisp programming language used by the GNU Emacs and XEmacs editors, which will simply be called "Emacs" in this article. Emacs Lisp is sometimes also called Elisp , at the risk of confusion with an unrelated Lisp dialect with the same name. The majority of the editing functionality in Emacs comes from code written in Emacs Lisp; the rest is written in C . Emacs Lisp code can be written by users to customize and extend Emacs. Emacs Lisp is related to the MacLisp and Common Lisp dialects of Lisp. It supports imperative and functional programming methods. Lisp was chosen as the extension language for Emacs because of its powerful features, including the ability to treat functions as data. Writing Emacs Lisp is not the only method of customizing Emacs. Since version 20, Emacs (both GNU Emacs and XEmacs) has included a "Customize" facility which allows users to set common customization variables through a graphical interface. "Customize" works by writing Emacs Lisp code for the user, and is limited to simple customizations. Not every user needs the full degree of extensibility offered by Emacs; those that do must write their own Emacs Lisp code. Table of contents 1 An Emacs Lisp Example
2 Source Code and Byte Code

3 Language Features

4 External Links
An Emacs Lisp Example
Here is a simple example of an Emacs extension written in Emacs Lisp. In Emacs, the editing area can be split into separate areas called "windows", each containing a different buffer. A buffer is, roughly speaking, a region of text loaded into Emacs' memory, which can be saved into a text document.

30. Lisp Programming Language - Reference Library
lisp programming language. Lisp (which stands for LISt Processing ) is a programming language oriented towards functional programming.
http://www.campusprogram.com/reference/en/wikipedia/l/li/lisp_programming_langua
Reference Library: Encyclopedia
Main Page
See live article Alphabetical index
Lisp programming language
Lisp (which stands for " LIS t P rocessing") is a programming language oriented towards functional programming . Its prominent features include prefix-notation syntax, dynamic typing (variables are type-neutral, but values have implicit type), and the ability to treat source code as first-class objects. Not counting the various machine languages and assembly languages , Lisp is the second-oldest programming language still in widespread use; only Fortran is older. Like Fortran, it has changed greatly since its early days. Strictly speaking, Lisp is now not a single language but a family of similarly-styled languages with an instantly recognizable appearance. These are known as Lisp dialects; the most well-known are Common Lisp and Scheme Table of contents showTocToggle("show","hide") 1 History
2 Syntax

3 Minimal Lisp

4 Example programs
...
8 See also
History
Information Processing Language was the first AI language, from 1955 or 1956, and already included many of the concepts, such as list-processing, which came to be used in Lisp. Lisp was invented by John McCarthy in while he was at MIT . McCarthy published its design a paper in Communications of the ACM in , entitled "Recursive Functions of Symbolic Expressions and Their Computation by Machine, Part I". (Part II was never published.) He showed that with a couple of simple operators and a notation for functions (see minimal lisp below) you may build a whole programming language.

31. CLiki : Practical Lisp Programming
Practical lisp programming. Once it s done you have a comfortable and professional lisp programming environment available. Packages.
http://www.cliki.net/Practical Lisp Programming
CL iki the common lisp wiki
Home
Recent Changes About CLiki Text Formatting ... Create New Page
Practical Lisp Programming
Setting up a Lisp system is more work than just downloading a CL implementation. To use Lisp productively, you might want to have an editor which understands Lisp and which can talk to your CL, you want important documentation available at a fingertips, you want to be able to use and manage Lisp packages written by others. This tutorial is a work-in-progress. The following is a possible outline:
  • Choosing your CL implementation. Briefly review DSFG free Common Lisp implementations (CLISP, CMUCL, SBCL, ECL, GCL, OpenMCL others?) and how to install these Lisps on Linux, Windows and Mac.
    Could/should this section include reviews of the free versions of commercial environments as well, despite CLiki charter? Also, maybe links to installation instructions per implementation would be better. If the instructions for some are deficient, then contributing to those might be better then duplicating the information here. Also, linking to the CLiki page for the implementation and putting the review there might be more maintainable. Nikodemus Setting up your editor. Covers emacs, ilisp, CLtL2, the Hyperspec.

32. Lisp Programming Language - Encyclopedia Article About Lisp Programming Language
encyclopedia article about lisp programming language. lisp programming language in Free online English dictionary, thesaurus and encyclopedia.
http://encyclopedia.thefreedictionary.com/Lisp programming language
Dictionaries: General Computing Medical Legal Encyclopedia
Lisp programming language
Word: Word Starts with Ends with Definition Lisp (which stands for " LIS t P rocessing") is a programming language has been proposed. Please council it when you plan to rewrite the article entirely. - A programming language or computer language is a standardized communication technique for expressing instructions to a computer. It is a set of syntactic and semantic rules used to define computer programs. A language enables a programmer to precisely specify what data a computer will act upon, how these data will be stored/transmitted, and precisely what actions to take under various circumstances.
Click the link for more information. oriented towards functional programming Functional programming is a programming paradigm that treats computation as the evaluation of mathematical functions. In contrast to imperative programming, functional programming emphasizes the evaluation of functional expressions, rather than execution of commands. The expressions in these languages are formed by using functions to combine basic values.
Introduction
The functions alluded to in the title are mathematical functions. Mathematical functions have great strengths in terms of flexibility and in terms of analysis. For example, if a function is known to be idempotent, then a call to a function which has itself as its argument, and which is known to have no side-effects, may be efficiently computed without multiple calls.

33. Common Lisp Programming Language - Encyclopedia Article About Common Lisp Progra
encyclopedia article about Common lisp programming language. Common lisp programming language in Free online English dictionary, thesaurus and encyclopedia.
http://encyclopedia.thefreedictionary.com/Common Lisp programming language
Dictionaries: General Computing Medical Legal Encyclopedia
Common Lisp programming language
Word: Word Starts with Ends with Definition Common Lisp , commonly abbreviated CL , is a dialect of Lisp Lisp (which stands for " LIS t P rocessing") is a programming language oriented towards functional programming. Its prominent features include prefix-notation syntax, dynamic typing (variables are type-neutral, but values have implicit type), and the ability to treat source code as first-class objects. Not counting the various machine languages and assembly languages, Lisp is the second-oldest programming language still in widespread use; only Fortran is older. Like Fortran, it has changed greatly since its early days.
Click the link for more information. , standardised by ANSI X3.226-1994. Developed to standardize the divergent variants of Lisp which predated it, it is not an implementation but rather a language specification to which most Lisp implementations conform. Common Lisp is a general-purpose programming language, in contrast to Lisp variants such as Emacs Lisp Emacs Lisp is a dialect of the Lisp programming language used by the GNU Emacs and XEmacs editors, which will simply be called "Emacs" in this article. Emacs Lisp is sometimes also called

34. Lisp Books: Best Lisp And Artificial Intelligence Books
A variety of books on Common lisp programming and AI, personally chosen by an experienced developer.
http://www.apl.jhu.edu/~hall/lisp-books.html
Lisp and AI Books Here are some of my personal favorite AI and Lisp books. I can recommend all of these books from personal experience. Click on the book titles to see more information or to order them on-line. For more information on Common Lisp, see my Lisp resources page Find More Lisp Books

35. Lisp Programming Language - 360 Of The Best Sites Selected By Humans
Pages PZ, 4 Columns. lisp programming Language. CBEL Computer technology ( 360 links, last update 12 April 2004 ) * = new links
http://www.cbel.com/lisp_programming_language/
Pages A-G 2 Columns
Pages H-O
Order by Alphabet Ordered by Theme Order by Popularity 3 Columns Pages P-Z 4 Columns
Lisp Programming Language
CBEL Computer technology ( 360 links, last update: 12 April 2004 )
* = new links
[Find on this page]

Association of Lisp Users: ALU

CMPnet TechWeb TechEncyclopedia: Lisp

CMU Artificial Intelligence Repository
...
TUNES Project: Lisp

Books
ALU: Lisp Books

ANSI Common Lisp
Best Lisp Books Common Lisp: A Gentle Introduction to Symbol... ... The Common Lisp Cookbook CLOS Cetus Links: CLOS Implementation of DBC MetaObject Protocol: MOP Allegro CL ... Emacs Major Modes and Packages (part 2) Emacs Rexx Mode Haskell Mode for Emacs Hugs mode for Emacs Ilisp ... Will Partains collection of Haskell modes fo... Emacs_Lisp TeX AUC TeX BibTeX Mode CDLaTeX Emacs ConTeXt mode ... XEmacs: Lisp Code - TeX Letter FAQs,_Help,_and_Tutorials A Brief Guide to CLOS A Guide to Common LISP An Introduction and Tutorial for Common Lisp Common Lisp HyperSpec (TM) ... Xerox to Symbolics Mouse Conversion Logo A Turtle for the Teacher Crystal Objects: Logo Computer Programming L... ECAWAs Logo Special Interest Group Going in Circles ... Turtle Graphics Information Logo Implementations AUCBLogo Berkeley Logo Digitool, Inc.: Object Logo

36. LISp Programming Language
lisp/top.html Contiene información acerca de Object Oriented Programming , implementaciones, mailing
http://mayaweb.upr.clu.edu/~mperez/lang-history/aceber.lisppr1.html
Historia del Lenguaje
Carlos J. Cruz Canales *Eddie H. Avila Cordero
Nombre del Lenguaje
LISt Processing language (LISp) "Lenguaje para procesar listas".
Newsgroups

37. Lisp Programming
Programs Ant colony travelling salesman problem solver (GEN, 7 kB) - Program that calculates prime factors (GEN, 0.9 kB)
http://www.cyd.liu.se/~micol972/site/lisp.htm
Programs:
Ant colony travelling salesman problem solver
(GEN, 7 kB)
Program that calculates prime factors
(GEN, 0.9 kB)

38. Common Lisp: A Gentle Introduction To Symbolic Computation
This book provides a very good introduction to the lisp programming language for beginners. Even if you have never before programmed in any language you will be able to use this book. Although it is aimed at beginners it covers all relevant Lisp topics quite thoroughly. The entire book is online and can be downloaded in PDF format.
http://www-2.cs.cmu.edu/~dst/LispBook/
Common Lisp: A Gentle Introduction to Symbolic Computation
David S. Touretzky
This book may be distributed in hardcopy form, for non-profit educational purposes, provided that no fee is charged to the recipient beyond photocopying costs. All other rights reserved. You may not redistribute the Postscript file, e.g., you may not put a copy on another web page, or include it on a CD-ROM.
Entire book Postscript
(1.75 MB file)
Entire book PDF
(1 MB file)
Free software
accompanying this book is also available.
Materials provided by David S. Touretzky , Carnegie Mellon University.
Last modified: Sat Aug 5 01:34:14 EDT 2000

39. Lisp Programming Language :: Online Encyclopedia :: Information Genius
lisp programming language. Online Encyclopedia Lisp (which stands for LISt Processing ) is a programming language oriented towards functional programming.
http://www.informationgenius.com/encyclopedia/l/li/lisp_programming_language.htm
Quantum Physics Pampered Chef Paintball Guns Cell Phone Reviews ... Science Articles Lisp programming language
Online Encyclopedia

Lisp (which stands for " LIS t P rocessing") is a programming language oriented towards functional programming . Its prominent features include prefix-notation syntax, dynamic typing (variables are type-neutral, but values have implicit type), and the ability to treat source code as first-class objects. Not counting the various machine languages and assembly languages , Lisp is the second-oldest programming language still in widespread use; only Fortran is older. Like Fortran, it has changed greatly since its early days. Strictly speaking, Lisp is now not a single language but a family of similarly-styled languages with an instantly recognizable appearance. These are known as Lisp dialects; the most well-known are Common Lisp and Scheme Table of contents 1 History
2 Syntax

3 Minimal Lisp

4 Example programs
...
8 See also
History
Information Processing Language was the first AI language, from 1955 or 1956, and already included many of the concepts, such as list-processing, which came to be used in Lisp. Lisp was invented by John McCarthy in while he was at MIT . McCarthy published its design a paper in Communications of the ACM in , entitled "Recursive Functions of Symbolic Expressions and Their Computation by Machine, Part I". (Part II was never published.) He showed that with a couple of simple operators and a notation for functions (see minimal lisp below) you may build a whole programming language.

40. Lisp Programming Language Definition Meaning Information Explanation
lisp programming language definition, meaning and explanation and more about lisp programming language. lisp programming language.
http://www.free-definition.com/Lisp-programming-language.html
A B C D ...
Contact

Beta 0.71 powered by:

akademie.de

PHP

PostgreSQL

Google News about your search term
Lisp programming language
Lisp (which stands for " LIS t P rocessing") is a programming language oriented towards functional programming . Its prominent features include prefix-notation syntax, dynamic typing (variables are type-neutral, but values have implicit type), and the ability to treat source code as first-class objects. Not counting the various machine languages and assembly languages , Lisp is the second-oldest programming language still in widespread use; only Fortran is older. Like Fortran, it has changed greatly since its early days. Strictly speaking, Lisp is now not a single language but a family of similarly-styled languages with an instantly recognizable appearance. These are known as Lisp dialects; the most well-known are Common Lisp and Scheme Inhaltsverzeichnis 1 History
2 Syntax

3 Minimal Lisp

4 Example programs
...
9 External links
History
Information Processing Language was the first AI language, from 1955 or 1956, and already included many of the concepts, such as list-processing, which came to be used in Lisp. Lisp was invented by John McCarthy in while he was at MIT. McCarthy published its design a paper in

A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

Page 2     21-40 of 128    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7  | Next 20

free hit counter