109
When programmers see Lisp
(lemmy.ml)
Post funny things about programming here! (Or just rant about your favourite programming language.)
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.