#condition ? true : false
apple_stock > 1 ? :eat_apple : :buy_apple
<div class="open_grepper_editor" title="Edit & Save To Grepper"></div>
is_student = false
is_smart =false
if is_student and is_smart
puts "you are a smart student
elsif is_student and !is_smart
puts "You are not a smart student"
else
puts "Not a student and not smart"
end
if 1 > 3
puts "Number comparison is True"
end