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.
Program/Source Code:
The source code to demonstrate the inspect() function is given below. The given program is compiled and executed successfully.
Output:
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