Arc Forumnew | comments | leaders | submitlogin
Z SHRTR BTTR? (rondam.blogspot.com)
10 points by lisper 5921 days ago | 6 comments


4 points by Darmani 5921 days ago | link

I think PG meant that succintness and power are approximately the same. Ron seems to be taking PG's statement to mean power is defined as succintness, and then breaking that.

Just as atomic mass was just a proxy to the true period law for Mendeleev, I see succintness in terms of syntax tree nodes as a proxy for the true definition of power, which would probably be more like the amount of space a program takes to hold in one's mind. Given that, of course binding-block would reduce power, as it would require one to add meta-tags to the assignments in one's mental code tree.

-----

4 points by nostrademons 5921 days ago | link

There's another very obvious counterexample: assertions. Buried within the source code to ArcLite is an assert function and several assertions. These are not strictly necessary; the functional behavior of a program is the same whether or not it has assertions. But they were very necessary for debugging, and they continued to catch other bugs long after they'd served their original purpose.

-----

2 points by kennytilton 5921 days ago | link

The upshot of that whole piece is that when making things terser we have to be careful not to make them impenetrable. Not sure that is much of a scoop. I worry about that every time I name a variable or function. It might be an answer to those complaining that Arc is just a bunch of macros atop Lisp: part of the hard part for PG may have been maintaining that very balance between brevity and obscurity. And I hear E=mc^2 was considered obvious by some once Einstein wrote it down. But I digress.

-----

2 points by bogomipz 5921 days ago | link

Either you would have to give up destructuring bind, or give up the implicit progn, like Arc already does in if.

-----

1 point by bogomipz 5921 days ago | link

Oops, this was supposed to be a reply to sjs's comment.

-----

1 point by sjs 5921 days ago | link

As I said in a comment on the post, destructuring binds become ambiguous with the proposed change. I don't think it would work.

-----