Keyboard shortcuts

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

STDIN don't accept nil

  • gets will retun nil if we press Ctrl-D
  • gets.not_nil! will raise an exception
# x = gets
# puts x.nil?

x = gets.not_nil!
puts x.nil?