Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- module Identifiable
- class << self
- def ident1
- puts self
- end
- end
- def self.ident2
- puts self
- end
- end
- class Thing
- include Identifiable
- end
- Thing.ident1
- Thing.ident2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement