Search Results

2
votes

Writing a ++ macro in Common Lisp

Semantically, the prefix operators ++ and -- in a language like c++ or whatever are equivalent incf/decf in common lisp. If you realize this and, like your (incorrect) macro, are actually looking …
2
votes

Simple Lisp Program Causing Computer To Hang

Your version runs fine here also. Here is a version rewritten in more idiomatic lisp style. There are of course many ways to do this. This one is written for clarity and not speed, and to …
3
votes

macro support in F#

but good horrors the syntax in those ocaml examples looks obscure There you're running into the same fundamental syntactic trade-off you do with Lisp. If you want the power of lis …
0
votes

How far can LISP macros go?

@S.Harrison (sorry can't add a comment) This is a bit nit-picky, but you have be be careful with terminology or risk confusing people searching the documentation. "Compiler macro" means so …
2
votes

Is it correct to use the backtick / comma idiom inside a (loop …)?

dsm: there are a couple of odd things about your code here. Note that …
6
votes

Are there any Common Lisp implementations for .Net?

I haven't looked at it recently, but at least in the past there were some problems with fully implementing common lisp on the CLR, and I'd be a little surprised if this has changed. The issues com …
9
votes

Best non-C++ language for generative programming?

Template metaprogramming is essentially abuse of the template mechanism. What I mean is that you get basically what you'd expect from a feature that was an unplanned side-effect --- it's a mess, …
7
votes

What is your favorite misconception about Lisp?

I don't know about having a favorite misconception... but one I often see that programmers talk about "LISP" and why they don't like it/it's inappropriate/it's academic/it'll never work for project …
2
votes

Why is Lisp used for AI?

I think it's wrong to think about this in terms of AI only. Things like the AI-winter and commercial effects on common lisp are distracting if you're asking why it was used for AI, not why it's no …
1
vote

Language showdown: Lazy (aka short-circuit) evaluation for And and Or applied to a list.

In common lisp, you have exactly this facility (every #'f '(2 3 4)) and similarly for some, notevery, notany the iteration macro loop provides similar shor …
2
votes

Lisp in the real world

Well, it's hardly mainstream, but I use lisp for as much of my research code as is manageable. It's by far the best language I've found for the balance of dynamism & expressiveness while still …
9
votes

Is a functional language a good choice for a Flight Simulator? How about Lisp?

It's a common mistake to think of "Lisp" as a functional language. Really it is best thought of as a family of languages, probably, but these days when people say Lisp they usually mean Common Li …
3
votes

Is it possible to deploy a Common Lisp (or other dialect) desktop application for several platforms?

Rainer has a good comment on the fundamental issues: There are good commercial solutions doing exactly what you ask (but they are not free development environments, and may involve recurring fees) …
0
votes

Clojure loop reads one extra.

I don't know clojure, but it looks to me like you're reading the stream again in "result" form, is this like final in CL ? …