There are quite a few code golf questions on Stackoverflow.com now. The challenge is always to produce a program with as few characters as possible. Is that really a sensible metric, in the context of the challenge?
My reasoning is that some languages just happen to use longer keywords. For example, Clojure defines a function with defn, while Scheme does it with define. This means that Clojure has an advantage in "character code golf", all other things assumed equal. I don't think that this makes Clojure any more concise than Scheme.
I would propose to use the number of nodes in the abstract syntax tree instead. Of course, this begs additional questions, e.g. how should qualified class methods be counted, like "System.out.println()", and is this distinguishable from Ruby-like "data.filter(x).sort(y)"?
Is this sensible?
edit: I know that code golf is just "silly fun", but it needs not be that silly. Stripping whitespace and shortening variable names really doesn't add to the challenge, or to the "wow" factor.
