How is the conditional operator (? :) used in Ruby?
? :
For example, is this correct?
<% question = question.size > 20 ? question.ques
puts true ? "true" : "false" => "true" puts false ? "true" : "false" => "false"