if else conditional statement in Ruby
Code snippet on how to if else conditional statement in Ruby
if condition
# code to be executed if condition is true
else
# code to be executed if condition is false
end
This code is an example of an if-else condition in Ruby. The code will first evaluate the condition in the “if” statement. If the condition is found to be true, then the code inside the “if” statement block will be executed. If the condition is false, then the code inside the “else” statement block will be executed instead. Finally, the “end” statement is used to tell the program when the condition block has been completed.