|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Lisp is More Evaluatable
by chromatic (Archbishop) on May 24, 2001 at 08:05 UTC | |
| [reply] [d/l] |
Re (tilly) 1: Lisp is More Evaluatable
by tilly (Archbishop) on May 24, 2001 at 16:03 UTC | |
First of all I suspect that delay is not doing what you think it is doing. For a start in, say, Common Lisp your code crashes and burns because delay is a special form in Scheme, but not Common Lisp. But beyond that delay is meant to be used with force, which you are not doing. If you look at this description you will find that when you use a delay without force the result is implementation dependent, but may be indistinguishable from the immediate value. Even if it is not indistinguishable, the code will run at most once and be memoized. Therefore your Lisp code is more portably and less deceptively written as: because the code that defined closure is now evaluated by having been used, and further "evals" of it should no longer affect the value of z. (ie The promise set up by delay in your code was redeemed in handing a 4 to eval. Further evals will continue to eval 4, but will not run the promise again.) Furthermore if you try to make the Lisp more like the Perl, for instance by making closure an anonymous function, you will find that the call semantics no longer work through an eval. As people have pointed out, that is because your Perl appears to reflect a deep misunderstanding about what all of these programming constructs should be doing. So while I believe that Lisp is more evaluatable than Perl, I do not think this is an example that illustrates the principle. BTW further stylistic points. In Lisp it is considered bad style to write code with side effects. As the advice goes, pretend that operations like setq have a penalty for use, and try to avoid them. Your pretend example of trying to set up a closure that will modify a global at a later date is indescribably bad - I would shudder to face code like that. In any language. Secondly in Lisp it is almost never a good idea to actually use eval. Use macros instead. Just as much power delivered in a more structured form. What both of these points get at is that writing debuggable code is a good idea. You seem to evaluate constructs on the basis of their ability to get very complex. You seem to entirely discount any notions that lead to debuggable code. I am coming to the conclusion that if the general programming world judged like you seem to, then goto would have never fallen out of favour... | [reply] [d/l] |
by hding (Chaplain) on May 24, 2001 at 18:21 UTC | |
It's really not bad style to write code with side effects (depending, I suppose, on your precise definition thereof). Of course, it's (usually) bad style to write code with random, unpredictable, or unclear side effects, just as in any language. But look in any well-regarded Lisp book like Norvig or one of Graham's and you'll see side effects, setfs, etc. It'd be hard to use CLOS, for example, without them. If one's intent is to use primarily the functional features of Lisp, then I guess I agree, but in practice, one uses the imperative and OO features just as much, it seems. You're spot on about eval, though. Oh, one other thing. For the code to do what (I guess) is actually desired, one needs to quote the form to be evaled:
As originally written, both closure and z would be set to 4, and the eval form would simply eval 4 to get 4 | [reply] [d/l] |
by tilly (Archbishop) on May 24, 2001 at 18:34 UTC | |
But it is certainly considered good style to avoid side-effects. And the advice of thinking of setq as having a penalty associated is straight from On Lisp by Graham. It is not a religious rule. But it is worth thinking about. In fact I think about it in Perl as well, though I am not as extreme because Perl cannot optimize tail recursion. As for the other point, perhaps I was unclearly verbose. But that is exactly what I was getting at with the phrase "...should no longer affect the value of z." | [reply] |
by hding (Chaplain) on May 24, 2001 at 20:15 UTC | |
Re: Lisp is More Evaluatable
by davorg (Chancellor) on May 24, 2001 at 11:49 UTC | |
You keep using the word "eval". I do not think it means what you think it means. --<http://www.dave.org.uk>
"Perl makes the fun jobs fun | [reply] |
Re: Lisp is More Evaluatable
by mikfire (Deacon) on May 24, 2001 at 08:13 UTC | |
The reason eval $x; doesn't "work" is that you are using a reference in scalar context, which has the well defined behaviour of stringifying the reference. I like this feature - it makes it easy to figure out how to access information deep withing a complex data structure. The $x->() format tells perl to dereference instead of stringify. This is again a standard syntax in perl. $x->{foo} access that key from a hash reference. Similarly from an array reference. Why do you expect a different syntax simply because it is a function reference? eval is there for two purposes: I am not a perl fanatic. I fully recognize each language has its purpose. I have never used lisp in any sense other than a college class, but I thought it was pretty fun. If you understand lisp better than perl, and it does the job you need, than by all means use it. Comparing one language to another seems pretty useless to me - each language is designed to solve a unique problem space. Would you also claim that a hammer is better than a screw driver? I guess I am asking, with respect, what the point of this node was? | [reply] |
by novitiate (Scribe) on May 24, 2001 at 14:08 UTC | |
Let's get on with the perl instead of these comparisons.... what next, perl vs. awk|sed ? | [reply] |
Re: Lisp is More Evaluatable
by johannz (Hermit) on May 25, 2001 at 03:10 UTC | |
Personally, I think the normal dereference syntax is quite readable:
| [reply] [d/l] |