Open In App

Ruby | Range begin() function

Last Updated : 18 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The begin() is an inbuilt method in Ruby returns the first element of the given range.
Syntax: range1.begin() Parameters: The function accepts no parameter Return Value: It returns the first element of the given range.
Example 1: Ruby
# Ruby program for begin() method in Range 

# Initialize range 
range1 = (0..10)

# Prints the beginning element
puts range1.begin() 
Output:
0
Example 2: Ruby
# Ruby program for begin() method in Range 

# Initialize range 
range1 = (10..20)

# Prints the beginning element
puts range1.begin() 
Output:
10

Next Article

Similar Reads