>>3
They are dialects. There would be no dialects if there were no problems in the other language. Duh.
Name:
Anonymous2011-08-07 19:44
there is no root Lisp language that dialects spring from, Lisp began as an eval loop and grew into a family of languages. Both CL and Scheme try to be the lowest common denominator but both are a long way off from what anyone would term as a language standard
>>8
CL is weird but pretty fast. And since quicklisp the library situation is much better.
And the ALL-CAPS output and general weirdness of dealing with a REPL makes me feel like I'm a console cowboy in a cyberpunk novel or something, which is pretty fun.
>>14
not really on topic. You're arguing against Scheme, not against new Lisps.
Name:
Anonymous2011-08-08 8:01
>>15 You're arguing against Scheme, not against new Lisps.
Racket made it even worse: instead of dealing with plain symbols, you're dealing with these syntax values (called “identifiers” in this case) that are essentially a symbol and some opaque information that represents the lexical scope for its source. In several syntax-case systems this is the only difference from defmacro macros, but in the Racket case this applies to everything — identifiers, numbers, other immediate constants, and even function applications, etc — they are all wrapped.
Name:
Anonymous2011-08-08 8:43
>>16
seems like the logical conclusion of Scheme to me.
Name:
Anonymous2011-08-09 8:16
One can argue that common lisp is so shitty that any change to it will be improvement.