Q:

Ruby program to return multiple values from the user-defined function

belongs to collection: Ruby User-defined Functions Programs

0

In this program, we will create a user-defined function to return two integer values and print the returned values.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to return multiple values from the user-defined function is given below. The given program is compiled and executed successfully.

# Ruby program to return multiple values 
# from the user define function

def RetMultipleValues()
    return 10,20;
end

val1,val2=RetMultipleValues();
print "Value1 is: ",val1,"\n";
print "Value2 is: ",val2,"\n";

Output:

Value1 is: 10
Value2 is: 20

Explanation:

In the above program, we created the function RetMultipleValues() and return multiple values. Then we printed returned values.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby User-defined Functions Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to create a simple recursive function... >>
<< Ruby program to return a string from the user-defi...