Ruby - Control Flow
What will be the output of the following Ruby code?
def check_age(age) return "Too young" if age < 18 "Welcome" end puts check_age(16) puts check_age(20)
