function string:show ()
print(self)
end
function string:append (s)
self = self .. s
x = "Hi "
x:show()
x:append("there!")