September 15, 2020
This blog is part of our Ruby 3.0 series.
Ruby 3.0
adds endless method definition.
It enables
us to create
method definitions
without the
need of end
keyword.
It is marked as an experimental feature.
# endless method definition
>> def raise_to_power(number, power) = number ** power
>> raise_to_power(2, 5)
=> 32
The discussion around it can be found here. Check out the pull request for more details on this.
If this blog was helpful, check out our full blog archive.