我是ruby新手,犯了很多错误,所以希望对ruby有经验的人可以分享一点知识。我不知道如何让 ruby 将文本保存到方法all
写入的 txt 文件中。
class generator
def all
puts "i want to save this text into a txt file"
end
end
new_gen = generator.new
new_gen.all
my_file = File.new("Story.txt", "a+")
my_file.puts("all")
my_file.puts("\n")
my_file.close
我尝试了所有方法,但 txt 文件要么包含“全部”,要么完全空白。有任何想法吗?我也试过my_file.puts(all)
和my_file.puts(new_gen.all)
。