I need create a conditional with a logical implication. I have four cases:
  if(true and true)
    #enter
  end
  if(true and false)
    #don't enter
  end
  if(false and true)
    #enter
  end
  if(false and false)
    #enter
  end
How I can make this?
 
    