Ruby - Modules and Mixins
Given two modules
Walk and Talk with methods walk and speak respectively, how can you create a class Person that uses both modules as mixins and calls both methods on an instance?
Choose the correct code snippet.