Bookmark the Dictionary of Words Online

lisp definition from the Dictionary of Words

Home Contact us New words
Web Images MP3/Audio Video Directory News
Help
Terms of Service
RESULTS IN:    English Spanish

Found 11 hits - Term: lisp, Database: *, Strategy: exact
[1] : The Collaborative International Dictionary of English v.0.48
lisp \lisp\ li^sp, v. i. imp.  p. p. lisped li^spt;
   p. pr.  vb. n. lisping. oe. lispen, lipsen, as. wlisp
   stammering, lisping; akin to d.  ohg. lispen to lisp, g.
   lispeln, sw. laumspa, dan. lespe.
   1. to pronounce the sibilant letter s imperfectly; to give s
      and z the sound of th; -- a defect common among children.
      1913 webster

   2. to speak with imperfect articulation; to mispronounce, as
      a child learning to talk.
      1913 webster

            as yet a child, nor yet a fool to fame,
            i lisped in numbers, for the numbers came. --pope.
      1913 webster

   3. to speak hesitatingly with a low voice, as if afraid.
      1913 webster

            lest when my lisping, guilty tongue should halt.
                                                  --drayton.
      1913 webster
see also:
lisped lisping 
[2] : The Collaborative International Dictionary of English v.0.48
lisp \lisp\ li^sp, n. computers list processing.
   a high-level computer programming language in which
   statements and data are in the form of lists, enclosed in
   parentheses; -- used especially for rapid development of
   prototype programs in artificial intelligence applications .
   pjc

[3] : The Collaborative International Dictionary of English v.0.48
lisp \lisp\, v. t.
   1. to pronounce with a lisp.
      1913 webster

   2. to utter with imperfect articulation; to express with
      words pronounced imperfectly or indistinctly, as a child
      speaks; hence, to express by the use of simple, childlike
      language.
      1913 webster

            to speak unto them after their own capacity, and to
            lisp the words unto them according as the babes and
            children of that age might sound them again.
                                                  --tyndale.
      1913 webster

   3. to speak with reserve or concealment; to utter timidly or
      confidentially; as, to lisp treason.
      1913 webster

[4] : The Collaborative International Dictionary of English v.0.48
lisp \lisp\, n.
   the habit or act of lisping. see lisp, v. i., 1.
   1913 webster

         i overheard her answer, with a very pretty lisp, "o
         strephon, you are a dangerous creature." --tatler.
   1913 webster
see also:
lisp 
[5] : WordNet (r) 2.0
lisp
     n 1: a speech defect that involves pronouncing s like voiceless
          th and z like voiced th
     2: a flexible procedure-oriented programing language that
        manipulates symbols in the form of lists syn: list-processing
        language
     v : speak with a lisp
see also:
list-processing language 
[6] : Moby Thesaurus II by Grady Ward, 1.0
90 moby thesaurus words for "lisp":
   aphonia, artificial voice, assibilate, assibilation, broken speech,
   broken tones, broken voice, buzz, childish treble, choked voice,
   cracked voice, croak, crow, drawl, dysarthria, dyslalia, dyslogia,
   dysphasia, dysphonia, dysphrasia, effervesce, effervescence,
   effervescing, falsetto, fizz, fizzle, fizzling, frication,
   frictional rustling, harshness, hawking voice, hiss, hissing,
   hoarseness, hush, hushing, idioglossia, idiolalia,
   impairment of speech, lisping, loss of voice, mince, muzzy speech,
   nasal tone, nasalization, quaver, rhonchus, shake, shush, shushing,
   sibilance, sibilate, sibilation, siffle, sigmatism, siss, sissing,
   sizz, sizzle, sizzling, sneeze, sneezing, sniff, sniffle, snore,
   snort, snuff, snuffle, speech defect, speech impediment, spit,
   splutter, sputter, squash, squelch, squish, sternutation, stertor,
   swish, talk incoherently, tremor, twang, wheeze, whish, whistle,
   whistling, white noise, whiz, whoosh, zip




[7] : Virtual Entity of Relevant Acronyms (Version 1.9, June 2002)
lisp
     list processor lisp
     
     

[8] : Virtual Entity of Relevant Acronyms (Version 1.9, June 2002)
lisp
     lots of isolated silly parentheses lisp, slang
     
     

[9] : Jargon File (4.3.1, 29 Jun 2001)
lisp n. from `list processing language', but mythically from `lots of
   irritating superfluous parentheses' ai's mother tongue, a language
   based on the ideas of a variable-length lists and trees as fundamental
   data types, and b the interpretation of code as data and vice-versa.
   invented by john mccarthy at mit in the late 1950s, it is actually older
   than any other hll still in use except fortran. accordingly, it has
   undergone considerable adaptive radiation over the years; modern
   variants are quite different in detail from the original lisp 1.5. the
   dominant hll among hackers until the early 1980s, lisp now shares the
   throne with c. its partisans claim it is the only language that is
   truly beautiful. see languages of choice.

   all lisp functions and programs are expressions that return values;
   this, together with the high memory utilization of lisps, gave rise to
   alan perlis's famous quip itself a take on an oscar wilde quote that
   "lisp programmers know the value of everything and the cost of nothing".

   one significant application for lisp has been as a proof by example
   that most newer languages, such as cobol and ada, are full of
   unnecessary crocks. when the right thing has already been done once,
   there is no justification for bogosity in newer languages.


see also:
hll c languages of choice cobol ada crock 
right thing bogosity 
[10] : The Free On-line Dictionary of Computing (27 SEP 03)
lisp
     
         list processing language.
     
        or mythically "lots of irritating superfluous parentheses".
        artificial intelligence's mother tongue, a symbolic,
        functional, recursive language based on the ideas of
        lambda-calculus, variable-length lists and trees as
        fundamental data types and the interpretation of code as data
        and vice-versa.
     
        data objects in lisp are lists and atoms.  lists may contain
        lists and atoms.  atoms are either numbers or symbols.
        programs in lisp are themselves lists of symbols which can be
        treated as data.  most implementations of lisp allow functions
        with side-effects but there is a core of lisp which is
        purely functional.
     
        all lisp functions and programs are expressions that return
        values; this, together with the high memory use of lisp, gave
        rise to alan perlis's famous quip itself a take on an oscar
        wilde quote that "lisp programmers know the value of
        everything and the cost of nothing".
     
        the original version was lisp 1, invented by john mccarthy
         at mit in the late 1950s.  lisp is
        actually older than any other high level language still in
        use except fortran.  accordingly, it has undergone
        considerable change over the years.  modern variants are quite
        different in detail.  the dominant hll among hackers until
        the early 1980s, lisp now shares the throne with c.  see
        languages of choice.
     
        one significant application for lisp has been as a proof by
        example that most newer languages, such as cobol and ada,
        are full of unnecessary crocks.  when the right thing has
        already been done once, there is no justification for
        bogosity in newer languages.
     
        see also association of lisp users, common lisp, franz
        lisp, maclisp, portable standard lisp, interlisp,
        scheme, elisp, kamin's interpreters.
     
        jargon file
     
        1995-04-16
     
     
see also:
artificial intelligence functional recursive lambda-calculus atom side-effect 
purely functional alan perlis lisp 1 john mccarthy mit 
high level language fortran hll c languages of choice 
cobol ada crock right thing bogosity 
association of lisp users common lisp franz lisp maclisp portable standard lisp 
interlisp scheme elisp kamin's interpreters jargon file 

[11] : The Free On-line Dictionary of Computing (27 SEP 03)
lisp
     
        starlisp a data-parallel extension of common lisp for
        the connection machine, uses "pvars".
     
        a lisp simulator
        ftp://think.com/public/starsim-f19-sharfile.
     
        e-mail: ,
        .
     
        cliff lasser, jeff mincy, j.p. massar, thinking machines
        corporation  "the essential lisp manual", tm corp 1986.
     
        jargon file
     
     
see also:
data-parallel common lisp connection machine pvars lt;a lisp simulatorgt; jargon file 


Results 1 - 10 of 19 found about lisp:

Lisp >> L Words
Lisp, definition of term: Lisp
lisp_pag1.html

An Introduction and Tutorial for Common Lisp
...Internet Lisp Resources and Free Lisp Implementations. *Lisp-Related ... The Evolution of Lisp A Detailed History of Lisp, from the 1993 ACM ... ..
http://www.apl.jhu.edu/~hall/lisp.html, score=100, date indexed=January 20, 2006, 8:12 am

On Lisp
...... Lisp is a comprehensive study of advanced Lisp techniques, with bottom- ... "On Lisp draws the reader in from the very first sentence. The author' ... ..
http://www.paulgraham.com/onlisp.html, score=98, date indexed=December 21, 2005, 3:00 am

Practical Common Lisp
...... Lisp for folks who are curious about Lisp but maybe not yet curious ... Lisp became the #1 top selling Lisp book on Amazon. It also made it as ... ..
http://www.gigamonkeys.com/book/, score=97, date indexed=December 29, 2005, 8:33 pm

CMUCL Home Page
...CMUCL is a free implementation of the Common Lisp programming language ... It mainly conforms to the ANSI Common Lisp standard. Here is a summary ... ..
http://www.cons.org/cmucl/, score=96, date indexed=December 29, 2005, 7:39 pm

Digitool, Inc. - Welcome to Digitool!
...... Lisp and CLOS. All of the major Lisp vendors have either released ... Also includes a directory of MCL/Lisp consultants. If you wish to be ... ..
http://www.digitool.com/, score=96, date indexed=December 29, 2005, 10:34 pm

ANSI Common Lisp
...... text On Lisp set a new standard for books on advanced Lisp programming ... This book would be excellent either for a standalone Lisp or ... ..
http://www.paulgraham.com/acl.html, score=96, date indexed=December 21, 2005, 2:40 am

The Common Lisp Cookbook
...Successful Lisp: How to Understand and Use Common Lisp by David B. ... Common Lisp Pitfalls by Jeff Dalton *Tutorial for the Common Lisp Loop ... ..
http://cl-cookbook.sourceforge.net/, score=96, date indexed=December 31, 2005, 4:54 pm

Python for Lisp Programmers
...Lisp is about twice as fast as Java. Gotchas for Lisp Programmers in ... with "traditional" syntax (what Lisp people call "infix" or "m-lisp" ... ..
http://www.norvig.com/python-lisp.html, score=96, date indexed=January 20, 2006, 2:32 am

Lisp Primer
... ..
http://grimpeur.tamu.edu/~colin/lp/, score=95, date indexed=December 21, 2005, 3:23 am

Page 1 2 Next


Last accessed:2008/10/06 11:25:31 [Total processing time: 0 seconds]
Myspace Layouts for Girls My Space
Middle East Business España México Puerto Rico Costa Rica Argentina Directorio
Dictionary online database provided by dict.org