From: Tim Wolak Date: 2008-05-20T21:46:48+09:00 Subject: displaying data I am getting data from three hashes and am trying to arrange them in four columns, however after I print out the first hash there is a new line return. How do you remove the new line? Thanks in advance, Tim def format @prevnl.each{ |key, value| puts "#{key}\t #{value}" } + @curnl.each{ |key, value| puts "#{value}" } @finbal.each{ |key, value| puts "#{key} \t #{value}" } end -- Posted via http://www.ruby-forum.com/.