-
-
Save dfischer/957f15d06c30245fdc55 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def serve_drinks(%User{age: age}) when age >= 21 do | |
| # Code that serves drinks! | |
| end | |
| serve_drinks User.get("John Doe") | |
| #=> Fails if the user is under 21 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment