我想制作一个程序,它每次都接受字符串并砍掉最后一个字符并将结果打印到控制台:
输入字符串为Hello
,结果应为:
Hello
Hell
Hel
He
H
到目前为止,这是我的代码:
def test_string
puts "Put your string in: "
string = gets.chomp
while string.length == 0
puts string.chop(/.$/)
end
end
puts test_string