>>52 also made me realize what retarded blob of shit
>>51 is. The use of "this" is not suited for a high-level language (or one that wants to be called as such). This is a problem even the C preprocessor can solve (for some cases):
#define bind_local(binding, value, body) \
do { binding = value; \
body; } while(0)
// alternative macro body:
// ((binding = (value)), body)
I know the author of the article likely won't reply, so I ask the
>>51 programmers of this board instead. Hit me back if you've got an adequate answer for
>>51's inadequacy.