Ruby - Modules and Mixins
You want to create a module
MathOps with a module method double that doubles a number, and also allow classes to include MathOps to get an instance method triple that triples a number. How would you define this?