Setting Up the ‘If’ Branch, Part 1 – Correct Example – Codeacademy

Setting Up the ‘If’ Branch, Part 1 – Correct Example – Codeacademy

This is a funny one.

The correct example:

1
2
3
4
5
6
7
print user_imput = "Hello"
user_input = gets.chomp
user_input.downcase!
 
if user_input.include? "s"
    print "Cristi ruleaza"
end

Notice that if you don’t add “end” after your last print, Codeacademy will return an error.
You don’t need an actual “else” statement. Just to add “end” so the code will know that your if statement has ended. This is how Ruby works.

Add a comment: