Skip to content

Instantly share code, notes, and snippets.

@TheNotary
Created April 4, 2013 03:28
Show Gist options
  • Save TheNotary/5307465 to your computer and use it in GitHub Desktop.
Save TheNotary/5307465 to your computer and use it in GitHub Desktop.
class ::Template # < ::String
def initialize(blah)
@data = blah
end
def to_s
@data
end
end
t = ::Template.new("blah")
t + "haha" # this line won't work no matter what =(
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment