Ruby - Operators and Expressions
The following Ruby code is intended to print "Falsy" only when
var is falsy. What is wrong?
var = nil if var == false puts "Falsy" else puts "Truthy" end
