About 8,640,000 results
Open links in new tab
  1. What is lisp used for today and where do you think it's going?

    Lisp is used in many applications, but mostly not the way CS students learn it. They use Lisp for basic CS concepts. Real Lisp software often looks different. More macros, more object …

  2. lisp - What is the difference between #\ , ' and #'? - Stack Overflow

    Sep 25, 2021 · " The Lisp reader parses #\a as the character literal a, which is an object in Common Lisp. Note that #\a and #\A are different character objects. When the Lisp reader …

  3. What's so great about Lisp? - Stack Overflow

    Jan 10, 2010 · I don't know enough Lisp to say whether it's good or bad. It seems like everyone who has used Lisp loves it, yet the most popular languages these days are descended from C. …

  4. lisp - What is an S-Expression - Stack Overflow

    Oct 23, 2022 · Code in any language that amount to a value is an expression. Lisp code is just lists with elements, a fundmental datastructure in lisp, however the plan was to use a syntax …

  5. lisp - Is there any method to find and replace text by using …

    Jun 21, 2022 · I would like to programmatically to produce a code for AutoCAD using VBA. The code will find and replace text in the AutoCAD. I found that AutoLISP allow using script to call …

  6. When to use ' (or quote) in Lisp? - Stack Overflow

    Sep 5, 2017 · In Emacs Lisp for example a symbol can have 1) data associated with it AND (at the same time - for the same symbol) 2) code associated with it - depending on the context, …

  7. lisp - Remove a specific item in a list? - Stack Overflow

    Oct 29, 2015 · Anyhoo, I'm taking a class on programming languages' structures, and one of our projects is to write a variety of small programs in lisp. This one requires the user to input a list …

  8. lisp - Select Specific Entity Type AutoLisp - Stack Overflow

    When selecting a point is there a way to filter OSNAP to only snap onto a specific entity type and not an entity of another type. eg Snap only to lines. setq startpt (*SNAP FILTER CODE* "LINE" (

  9. lisp - Extract data from a table object using autolisp - Stack Overflow

    Jan 24, 2017 · I want to extract certain information from the comparison of the information stored in a drawing-table or table object, as you prefer to call it, if the comparison succeeds then …

  10. lisp - what does the dot in the following emacs command mean

    Mar 16, 2011 · In lisp, on the low level, you can either have an simple value (a number or an atom) or a dotted pair, or cons cells. (Let's ignore modern stuff like vectors...). On top of these, …