STDIN don't accept nil



examples/other/gets_not_nil.cr
# x = gets
# puts x.nil?

x = gets.not_nil!
puts x.nil?