>>>>> "J" == Joseph McDonald <joe / vpop.net> writes: J> Hmmm, Is there a way to find out the ruby method that "puts" calls via J> ruby itself (not spelunking through the ruby source code)? #puts call #to_s, except for nil and Array 'nil.to_s' give "", 'puts nil' give "nil" for Array this is probably because it can contain nil Guy Decoux