Lisp

1. имя существительное 1) шепелявость 2) шорох, шелест (листвы, травы) 2. глагол 1) шепелявить 2) то же, что и lisp out - лепетать (о детях) Например: The little girl lisped out her story. — Маленькая девочка, лепеча, рассказала, что с ней произошло. 3) льстить, присюсюкивать

Большой англо-русский словарь

Lisp

также LISP Лисп, язык программирования Лисп предложен в конце 1958 г. математиком Джоном Маккарти (John McCarthy) из МТИ (ему же принадлежит идея создания систем с разделением времени). Программа на этом языке и большая часть структур данных представляют собой связанные списки. Базовыми операциями языка являются операции над списками. Это был, в частности, первый ЯВУ, в котором при работе с динамически распределяемой памятью производится автоматическая "сборка мусора" (garbage collection). Название идет от List Processing language - язык обработки списков (из-за изобилия скобок некоторыми расшифровывается как Lots of Idiotic Silly Parentheses - множество идиотских, глупейших скобок). Язык функционального программирования, базирующийся на лямбда-исчислении. Диалекты: для РС - MuLISP фирмы Soft Warehouse, Honolulu, Havaii; InterLISP, CommonLISP, MacLisp. Используется для задач ИИ Смотри также: AI, expert system, list 2)

Англо-русский словарь компьютерных терминов

Lisp

сокращение от list processing language язык обработки списков Лисп (язык программирования)

Англо-русский политехнический словарь

Lisp

noun Etymology: list processing a computer programming language that is designed for easy manipulation of data strings and is used extensively for work in artificial intelligence

Merriam-Webster's Collegiate Dictionary

Lisp

I. verb Etymology: Middle English, from Old English -wlyspian; akin to Old High German lispen to lisp intransitive verb 1. to pronounce the sibilants [s] and [z] imperfectly especially by turning them into [th] and [ṯẖ] 2. to speak falteringly, childishly, or with a lisp transitive verb to utter falteringly or with a lisp • lisper noun II. noun 1. a speech defect or affectation characterized by lisping 2. a sound resembling a lisp

Merriam-Webster's Collegiate Dictionary

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.

Free Online Dictionary of Computing