local t = {a = 1, b = 2}
function t:sum()
  return self.a + self.b
end
print(t:sum())
