class test function __init(self, x) self.x = x end function print(self) print(self.x) return self.x end end var t = test("hello") print(t.print())