Skip to content

Instantly share code, notes, and snippets.

@behreajj
Created August 7, 2021 19:17
Show Gist options
  • Save behreajj/bc6a1a42e2c493b2bcf5d0f5b18160a6 to your computer and use it in GitHub Desktop.
Save behreajj/bc6a1a42e2c493b2bcf5d0f5b18160a6 to your computer and use it in GitHub Desktop.
Undocumented Methods
local x = Point(1, 2)
for key, value in pairs(getmetatable(x)) do
print(key, value)
end
print(x + Point(3, 4))
print(x * 5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment