From: Logan Capaldo Date: 2006-03-07T06:43:58+09:00 Subject: Re: idiomatic ruby --Apple-Mail-23-165457559 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed On Mar 6, 2006, at 4:38 PM, rtilley wrote: > mgmt.InstancesOf("win32_process").each do |p| > puts p.name.to_s + "\t" + > p.processid.to_s + "\t" + > p.executablepath.to_s > end I would use string interporlation here: puts "#{p.name}\t#{p.processid}\t#{p.executablepath}" --Apple-Mail-23-165457559--