Ruby | Integer – function
The – is an inbuilt method in Ruby returns the subtraction of two numbers. It returns num1 – num2.
Syntax: num1 – num2
Parameters: The function accepts no parameter.
Return Value: It returns the subtraction of two numbers.
Example 1:
# Ruby program for - method in Integer # Initialize numbers num1 = 15 num2 = 4 # Prints subtraction print num1 - num2 |
chevron_right
filter_none
Output:
11
Example 2:
# Ruby program for - method in Integer # Initialize numbers num1 = 21 num2 = 3 # Prints subtraction print num1 - num2 |
chevron_right
filter_none
Output:
18
Recommended Posts:
- Ruby Integer integer? function with example
- Ruby | Integer >= function
- Ruby Integer abs() function with example
- Ruby Integer chr function with example
- Ruby Integer even? function with example
- Ruby | Integer <=> function
- Ruby Integer div() function with example
- Ruby | Integer << function
- Ruby Integer gcd() function with example
- Ruby Integer lcm() function with example
- Ruby Integer next function with example
- Ruby Integer odd? function with example
- Ruby Integer to_s function with example
- Ruby Integer pred() function with example
- Ruby Integer remainder() function with example
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.