Too much Smalltalk
Written on August 13 2011.
This blog post was written a long time ago and may not reflect my current opinion or might be technically out of date. Read with a grain of salt.
I’m using way too much Smalltalk these days, I find myself typing:
@articles do |each|
# do something with each
end
instead of:
@articles.each do |article|
# do something with article
end
when coding in Ruby. Stupid brain…