标签: ruby while-loop
如何在完成后添加新行(使用新字符串)'被收回了吗?
while (input = gets.chomp) != "done" ... end
答案 0 :(得分:1)
在收到“完成”之后,循环之后的所有内容都会发生。
所以...
while (input = gets.chomp) != "done" ... end puts puts "someone typed 'done' so I'm now showing this text."