if 1 < 2 puts “one smaller than two” elsif 1 > 2 # *careful not to mistake with else if. In ruby you write elsif* puts “elsif” else puts “false” end # or puts "be printed" if true puts 3 > 4 ? "if true" : "else" # else will be putted