So far, we've only been using built-in methods that Ruby provided us with. We can also define our own methods, though!

Well done! We define a method with the def keyword and a name. Below that definition, we put a code block that we finish with end.

Are you sure that this is the right time and place for control-flow keywords?