Check if variable is nil?



examples/other/is_nil.cr
x = "hello"
puts x.nil?
y = nil
puts y.nil?