109
When programmers see Lisp
(lemmy.ml)
Post funny things about programming here! (Or just rant about your favourite programming language.)
The real interesting debate is between
((f) 1)
andf()(1)
.I personally find
((f) 1)
easier to read. You just go inside out, evaluatef
, then pass1
as the argument to the output off
. There's no ambiguity regarding order of evaluation there.