enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Lisp (programming language) - Wikipedia

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

    It has many of the features of Lisp Machine Lisp (a large Lisp dialect used to program Lisp Machines), but was designed to be efficiently implementable on any personal computer or workstation. Common Lisp is a general-purpose programming language and thus has a large language standard including many built-in data types, functions, macros and ...

  3. List of Lisp-family programming languages - Wikipedia

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

    Statically and dynamically scoped Lisp dialect developed by a loose formation of industrial and academic Lisp users and developers across Europe; the standardizers intended to create a new Lisp "less encumbered by the past" (compared to Common Lisp), and not so minimalist as Scheme, and to integrate the object-oriented programming paradigm well ...

  4. Common Lisp - Wikipedia

    en.wikipedia.org/wiki/Common_Lisp

    There is also a function to evaluate Lisp code: eval. eval takes code as pre-parsed s-expressions and not, like in some other languages, as text strings. This way code can be constructed with the usual Lisp functions for constructing lists and symbols and then this code can be evaluated with the function eval.

  5. Read–eval–print loop - Wikipedia

    en.wikipedia.org/wiki/Read–eval–print_loop

    In Lisp, evaluating an s-expression beginning with the name of a function means calling that function on the arguments that make up the rest of the expression. So the function + is called on the arguments 1 2 3, yielding the result 6. The print function takes the result yielded by eval, and prints it out to the user.

  6. Apply - Wikipedia

    en.wikipedia.org/wiki/Apply

    In JavaScript, function objects have an apply method, the first argument is the value of the this keyword inside the function; the second is the list of arguments: func . apply ( null , args ); ES6 adds the spread operator func(...args) [ 3 ] which may be used instead of apply .

  7. Multiple dispatch - Wikipedia

    en.wikipedia.org/wiki/Multiple_dispatch

    Multiple dispatch or multimethods is a feature of some programming languages in which a function or method can be dynamically dispatched based on the run-time (dynamic) type or, in the more general case, some other attribute of more than one of its arguments. [1]

  8. Fexpr - Wikipedia

    en.wikipedia.org/wiki/Fexpr

    In early Lisp, the environment mapped each symbol to an association list, rather than directly to a value. [1] Standard keys for these lists included two keys used to store a data value, to be looked up when the symbol occurred as an argument (APVAL and APVAL1); and four keys used to store a function, to be looked up when the symbol occurred as an operator.

  9. eval - Wikipedia

    en.wikipedia.org/wiki/Eval

    The input to eval is not necessarily a string; it may be structured representation of code, such as an abstract syntax tree (like Lisp forms), or of special type such as code (as in Python). The analog for a statement is exec , which executes a string (or code in other format) as if it were a statement; in some languages, such as Python, both ...