Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
実行すると
print("Enter your name: ") name=gets puts("\tHello, #{name}.")
、私は得る:
Hello, Fohsap .
ピリオド (.) を最初の行に移動するにはどうすればよいですか?
gets返される文字列に改行文字が含まれます。これを削除するには、を使用できますgets.chomp。
gets
gets.chomp