STDIN don't accept nil
gets
will retunnil
if we press Ctrl-Dgets.not_nil!
will raise an exception
# x = gets
# puts x.nil?
x = gets.not_nil!
puts x.nil?
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
gets
will retun nil
if we press Ctrl-Dgets.not_nil!
will raise an exception# x = gets
# puts x.nil?
x = gets.not_nil!
puts x.nil?