TulipeMoutarde.be

Programming & Living 
Filed under

misc

 

Too much Smalltalk

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…

Filed under  //   misc   ruby   smalltalk  

Comments [2]