Q:

Ruby program to demonstrate the inspect() function

belongs to collection: Ruby Basic Programs

0

In this program, we will create 3 variables with some initial value. Then we will use inspect() to get the value of the variable as a string.

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 demonstrate the inspect() function is given below. The given program is compiled and executed successfully.

# Ruby program to demonstrate 
# the inspect() function

num1 = 12;  
num2 = Complex(0,0);  
num3 = Complex(2,3);  

print "Num1: "  ,num1.inspect();
print "\nNum2: ",num2.inspect();
print "\nNum3: ",num3.inspect();

Output:

Num1: 12
Num2: (0+0i)
Num3: (2+3i)

Explanation:

In the above program, we created three variables with some initial values. Then we used inspect() function with created variable to get the value of variables as a string and printed the result.

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

total answers (1)

Ruby Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to get the numerator from a rational ... >>
<< Ruby program to check a number is zero or not usin...