Last active
May 24, 2016 08:46
-
-
Save pashagray/8bf68108b3161f728289252d5f8cf199 to your computer and use it in GitHub Desktop.
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
module Roarable | |
def roar! | |
puts 'AGRH!!!!' | |
end | |
end | |
class Time | |
include Roarable | |
end | |
time = Time.new(2016,1,1) | |
puts time.roar! | |
#=> AGRH!!!! | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment