Language Basics Ruby

x =2
if x != nil   # Expression "x != nil" returns true or false to the if
  puts x      # Print x if it is defined
end