About 8,910,000 results
Open links in new tab
  1. 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. …

  2. 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 …

  3. 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 …

  4. 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 …

  5. What makes Lisp macros so special? - Stack Overflow

    Nov 6, 2008 · But Lisp is different. Lisp macros do have access to the parser, and it is a really simple parser. A Lisp macro is not handed a string, but a preparsed piece of source code in …

  6. 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 …

  7. 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

  8. Are there any Common Lisp implementations for .Net?

    Sep 21, 2008 · There are bigger issues, for example common lisp has a more powerful object system, so you can't map it 1:1 to object in the runtime (no MI, for one). This is ok, but leaves …

  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. What is ' (apostrophe) in Lisp / Scheme? - Stack Overflow

    No, in scheme (as opposed to common lisp) stuff is an identifier. It becomes a symbol by quoting it, as in 'stuff. A small point, but it is nice to get it right. In scheme, identifiers are not required …