About 8,120,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. 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. …

  3. Difference between `set`, `setq`, and `setf` in Common Lisp?

    May 15, 2009 · If SET and SETQ are to be booted from a Common Lisp successor, they will have to get some replacement. Their use in high-level code is limited, but low-level code (for …

  4. lisp - Is there a better way to get the nth item in a list? - Stack ...

    Mar 21, 2016 · Continue to help good content that is interesting, well-researched, and useful, rise to the top! To gain full voting privileges,

  5. Lisp: How to write an if statement with multiple conditions?

    Feb 3, 2022 · Lisp: How to write an if statement with multiple conditions? Asked 3 years, 8 months ago Modified 3 years, 8 months ago Viewed 2k times

  6. syntax - What does # mean in LISP - Stack Overflow

    Feb 2, 2011 · Often Lisp users develop embedded languages and to make that a bit easier, the Common Lisp standard tries to keep character usage down to a minimum and also provides …

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

    Oct 23, 2022 · An atom is the base case. In classical Lisp (the original language proposed by John McCarthy), an atom is just a distinct unit, that we conventionally designate with a name. …

  8. Lisp - append to a list - Stack Overflow

    Mar 8, 2015 · I am new to lisp. I didn't properly understand how to implement append function on a list. I tried the following program. (defvar temp) (setq temp '()) (append temp (logxor 1 0)) …

  9. What are the actual differences between Scheme and Common …

    Mar 23, 2011 · Common Lisp is a fully-fledged, highly dynamic, multi-paradigm language with various ugly but pragmatic features, whose implementations are largely compatible with one …

  10. lisp - Can you execute multiple statements in an "if" statement ...

    Just to add, you could also use the (begin exp1 exp2...) syntax to evaluate more than one expression in Lisp sequentially. Using this on an if's branch will have the same effect as using …