From: 7stud -- Date: 2007-09-30T23:40:21+09:00 Subject: Re: Newbie needs help getting user input 7stud -- wrote: > > 2) > f = File.open("data.txt", "w") do |file| > file.puts("goodbye mars") > end Whoops, too slow. And I had some detritus stuck to the front of that example anyway. It should be: 2) File.open("data.txt", "w") do |file| file.puts("goodbye venus") end -- Posted via http://www.ruby-forum.com/.