You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 3. Try some more complex boolean expressions like cars > people and buses < cars. Above each line write an English description of what the line does.
boys = 5
girls = 5
fathers = 10
mothers = 10
if boys and girls <= fathers
puts "Boys and girls is <= fathers"
end
if boys and girls < fathers and mothers
puts "Boys and girls is less than fathers and mothers"