Skip to content

Instantly share code, notes, and snippets.

@rickhull
Last active November 10, 2017 01:21
Show Gist options
  • Save rickhull/462ca3c81f7e1f860de8788b17d32497 to your computer and use it in GitHub Desktop.
Save rickhull/462ca3c81f7e1f860de8788b17d32497 to your computer and use it in GitHub Desktop.
module Foo
def print(msg)
p [msg, self]
end
end
class Bar
include Foo
def initialize
self.print("WTF dood")
end
end
Bar.new
["WTF dood", #<Bar:0x0055883f1c5da0>]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment