If Statements
Lesson 17Author : GOUP
Last Updated : September, 2020
if is_student and is_smart puts "You are a student" elsif is_student and !is_smart puts "You are not a smart student" else puts "You are not a student and not smart" end
>, <, >=, <=, !=, ==
if 1 > 3 puts "number comparison was true" end
if "a" > "b" puts "string comparison was true" end