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.
1# endless method definition 2>> def raise_to_power(number, power) = number ** power 3 4>> raise_to_power(2, 5) 5 6=> 32 7
The discussion around it can be found here. Check out the pull request for more details on this.