Created
August 7, 2021 19:17
-
-
Save behreajj/bc6a1a42e2c493b2bcf5d0f5b18160a6 to your computer and use it in GitHub Desktop.
Undocumented Methods
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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