n1 = 42exists1 = n1 != nil# exists1 is truen2 = nilexists2 = n2 != nil# exists2 is falseputs "exists1 is #{exists1}"puts "exists2 is #{exists2}"