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
- Returns? | |
module Module | |
def const_missing(name) | |
"sorry i don't have #{name} yet" | |
end | |
end | |
Untitled #=> ? | |
Monkeys #=> ? | |
=> | |
You get `TypeError: Module is not a module` before reaching Untitled code |