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
| # If I use define_method(:talk) everything works as advertised and it's obviously getting self from the instance | |
| # If I instead use: | |
| # def talk | |
| # puts "Talking..." | |
| # end | |
| # it no worky? the def recognizes self as the Class. Why do they function differently? | |
| module Talkable | |
| def add_talking |