translation to if-syntax
In if syntax, this is equivalent to:
if functioncall?(options[:product])
else
puts "Hello World"
end
OR
if !functioncall?(options[:product])
puts "Hello World"
end
Output of boolean method
The method functioncall?(options[:product]) will return true if the options hash has a key called product.
Output of your method
Depending on the contents of the options hash, the method above will produce:
# options = { :key => value, :product => 'stuff'}
functioncall?(options[:product]) #=> true
# the output of your code would be nil
# options = { :key => value, :foo => 'bar'}
functioncall?(options[:product]) #=> false
# the output of your code would be "Hello World"
if, but, well, reverse. :) – Sergio Tulentsev Dec 6 '12 at 8:15unless functioncall?(options[:product])– Sergio Tulentsev Dec 6 '12 at 8:20