Open In App

Ruby | Rational == method

Last Updated : 12 Jul, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

The == is an inbuilt method in Ruby returns boolean value true if two rational numbers are same otherwise false

Syntax: rat1 == rat2

Parameters: The function accepts no parameter

Return Value: It returns boolean value true if two rational numbers are same otherwise false 
 

Example 1:  

Ruby
# Ruby program for == method

# Initialize rational number 
rat1 = Rational(1, 3)
rat2 = Rational(1, 3)

# Prints the rational number
puts rat1 == rat2

Output

true


Example 2

Ruby
# Ruby program for == method

# Initialize rational number 
rat1 = Rational('1/3')

# Prints the rational number
puts rat1 == 0.33

Output

false


 


Similar Reads