From: "Iván Vega Rivera" Date: 2006-03-08T10:10:39+09:00 Subject: Passing the same argument(s) to several methods at once Hi, I'm a Ruby beginner, but I remember I read somewhere something related... Only at the time I didn't realize it's usefulness until now. Maybe I'm mistaken, but is it possible to pass the same argument(s) to several functions at once? Like: function_a 'something' function_b 'something' Instead something like: 'something'.pass do |arg| function_a arg function_b arg end Does that make sense? Thanks in advance! Ivan V.