Introduction
In Ruby, methods automatically give back the result of the last thing they do. This means you don't have to write return every time.
When you want your method to send back a value without extra words.
When writing simple methods that just calculate and give a result.
When you want cleaner and shorter code.
When you want to avoid mistakes by forgetting to write <code>return</code>.
When you want your code to be easy to read like a story.